X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2FConfig.ppc-linux;h=21fedc905ee5659f2a522c2c454706a7a03432ca;hb=eac461c1f1ca91cfe282c779291d582ed6b336cb;hp=1dcbc80a32d49a6d86f6f0384e698b1a260e0675;hpb=c1b4849c95bad4f3535fba2b9307fd37e15bcf6d;p=sbcl.git diff --git a/src/runtime/Config.ppc-linux b/src/runtime/Config.ppc-linux index 1dcbc80..21fedc9 100644 --- a/src/runtime/Config.ppc-linux +++ b/src/runtime/Config.ppc-linux @@ -1,3 +1,5 @@ +# -*- makefile -*- for the C-level run-time support for SBCL + # This software is part of the SBCL system. See the README file for # more information. # @@ -7,16 +9,29 @@ # provided with absolutely no warranty. See the COPYING and CREDITS # files for more information. -CFLAGS += -g -Dppc -LD = ld #-taso -LINKFLAGS = -v -g # -Wl,-T -Wl,ld-script.alpha-linux -NM = nm -p +CFLAGS = -g -m32 +LINKFLAGS += -v -rdynamic -m32 +NM = ./linux-nm ASSEM_SRC = ppc-assem.S ldso-stubs.S ARCH_SRC = ppc-arch.c -OS_SRC = linux-os.c ppc-linux-os.c os-common.c -LINKFLAGS+=-rdynamic # -static -OS_LIBS= -ldl +OS_SRC = linux-os.c ppc-linux-os.c +OS_LIBS = -ldl + +ifdef LISP_FEATURE_GENCGC + GC_SRC = gencgc.c +else + GC_SRC = cheneygc.c +endif + +ifdef LISP_FEATURE_SB_THREAD + OS_LIBS += -lpthread +endif +ifdef LISP_FEATURE_SB_CORE_COMPRESSION + OS_LIBS += -lz +endif -GC_SRC= gc.c +# Nothing to do for after-grovel-headers. +.PHONY: after-grovel-headers +after-grovel-headers: