X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2FConfig.ppc-linux;h=f8ceded2aca72853ebb4de10ca6f194d88394530;hb=beddcfe1ea23d2cfdddde2fa7cde6436799715a2;hp=d7a2393dd13cdc0f7081e6b414ac7449399cf9a4;hpb=9f10bc102adce15a820027777a03e49a7b7623da;p=sbcl.git diff --git a/src/runtime/Config.ppc-linux b/src/runtime/Config.ppc-linux index d7a2393..f8ceded 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,26 @@ # provided with absolutely no warranty. See the COPYING and CREDITS # files for more information. -CFLAGS += -g -Dppc -LD = ld -LINKFLAGS = -v -g -NM = nm -p +CFLAGS = -g +LINKFLAGS += -v -rdynamic +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 -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 -GC_SRC= cheneygc.c +# Nothing to do for after-grovel-headers. +.PHONY: after-grovel-headers +after-grovel-headers: