scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

commit 008c8517f6c14be0607d602700425fc2f382e93c
parent 4d45ecba3eb7a93e66e64690c625c84b3fae6ce1
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Mon, 23 Jan 2023 13:26:17 +0100

build: Remove gnu-darwin.mk

This file is not needed anymore because the functionality
must be covered by the config tool.

Diffstat:
Dscripts/build/tool/gnu-darwin.mk | 3---
Mscripts/config | 3+++
2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/scripts/build/tool/gnu-darwin.mk b/scripts/build/tool/gnu-darwin.mk @@ -1,3 +0,0 @@ -include $(BUILDDIR)/tool/gnu.mk - -RANLIB_FLAGS = -c diff --git a/scripts/config b/scripts/config @@ -11,6 +11,9 @@ NetBSD) FreeBSD) echo TOOL=${TOOL:-clang} HOST=bsd ;; +Darwin) + echo HOST=bsd RANLIB_FLAGS="${RANLIB_FLAGS:--c}" + ;; *BSD) echo HOST=bsd ;;