X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2FConfig.x86-linux;h=693cd74fadf2045d7d930dc955941c50ee0ef771;hb=c6b078527eb68acc281dc79c91824c937f9447fe;hp=b83f2b0a8261b3396171303d92fcab9b2fa29512;hpb=9f10bc102adce15a820027777a03e49a7b7623da;p=sbcl.git diff --git a/src/runtime/Config.x86-linux b/src/runtime/Config.x86-linux index b83f2b0..693cd74 100644 --- a/src/runtime/Config.x86-linux +++ b/src/runtime/Config.x86-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,10 +9,12 @@ # provided with absolutely no warranty. See the COPYING and CREDITS # files for more information. +NM = ./linux-nm + ASSEM_SRC = x86-assem.S ldso-stubs.S ARCH_SRC = x86-arch.c +OS_SRC = linux-os.c x86-linux-os.c -OS_SRC = linux-os.c x86-linux-os.c os-common.c # The "--Wl,--export-dynamic" flags are here to help people # experimenting with callbacks from C to SBCL, by allowing linkage to # SBCL src/runtime/*.c symbols from C. Work on this is good, but it's @@ -23,8 +27,15 @@ OS_SRC = linux-os.c x86-linux-os.c os-common.c # (You *are* encouraged to design and implement a coherent stable # interface, though.:-| As far as I (WHN 2002-05-19) know, no one is # working on one and it would be a nice thing to have.) -OS_LINK_FLAGS = -Wl,--export-dynamic +LINKFLAGS += -Wl,--export-dynamic OS_LIBS = -ldl +OS_LIBS += $(shell if grep LISP_FEATURE_SB_THREAD genesis/config.h \ + > /dev/null 2>&1; \ + then echo "-lpthread"; fi) + GC_SRC = gencgc.c +# Nothing to do for after-grovel-headers. +.PHONY: after-grovel-headers +after-grovel-headers: