X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=contrib%2Fasdf-module.mk;h=ddce36b4beb54a4b0faf309d03b34ca41d5f982b;hb=f0da2f63aa0b4e6d4dbf884854a4bf2dfdd01fc0;hp=a9e55d750f345b7d9a2260f55e9e0a2a4997d0a9;hpb=79a7407034c36e82fa2eca1daa23aae9af6391bd;p=sbcl.git diff --git a/contrib/asdf-module.mk b/contrib/asdf-module.mk index a9e55d7..ddce36b 100644 --- a/contrib/asdf-module.mk +++ b/contrib/asdf-module.mk @@ -1,4 +1,4 @@ -CC=gcc +CC?=gcc # We need to extend flags to the C compiler and the linker # here. sb-posix, sb-grovel, and sb-bsd-sockets depends upon these @@ -11,9 +11,12 @@ UNAME:=$(shell uname -s) ifeq (SunOS,$(UNAME)) EXTRA_CFLAGS=-D_XOPEN_SOURCE=500 -D__EXTENSIONS__ + PATH:=/usr/xpg4/bin:${PATH} endif ifeq (CYGWIN,$(findstring CYGWIN,$(UNAME))) EXTRA_CFLAGS=-mno-cygwin + # GCC 4.x doesn't accept -mno-cygwin. + CC:=gcc-3 # SBCL can't read cygwin symlinks, and cygwin likes to symlink # gcc. To further complicate things, SBCL can't handle cygwin # paths, either. @@ -24,7 +27,7 @@ export CC SBCL EXTRA_CFLAGS EXTRA_LDFLAGS all: $(EXTRA_ALL_TARGETS) $(MAKE) -C ../asdf - $(SBCL) --eval '(defvar *system* "$(SYSTEM)")' --load ../asdf-stub.lisp --eval '(quit)' + $(SBCL) --eval '(defvar *system* "$(SYSTEM)")' --load ../asdf-stub.lisp --eval '(exit)' test: all echo "(asdf:operate (quote asdf:load-op) :$(SYSTEM))" \