X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2FConfig.x86-linux;h=6f12bc45beda660719b63b64a6ffbab89ba159e0;hb=43c6634142a96e1d1bab2efe1a39cd8234903c41;hp=c9b978141d5b71ab6b0a033e17ea427bd0f1a3cb;hpb=2dc6e61d7202a08aba805d324e6371f7d939949b;p=sbcl.git diff --git a/src/runtime/Config.x86-linux b/src/runtime/Config.x86-linux index c9b9781..6f12bc4 100644 --- a/src/runtime/Config.x86-linux +++ b/src/runtime/Config.x86-linux @@ -27,12 +27,23 @@ OS_SRC = linux-os.c x86-linux-os.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.) -LINKFLAGS += -Wl,--export-dynamic +LINKFLAGS += -Wl,--export-dynamic -m32 OS_LIBS = -ldl -OS_LIBS += $(shell if grep LISP_FEATURE_SB_THREAD genesis/config.h \ - > /dev/null 2>&1; \ - then echo "-lpthread"; fi) +ifdef LISP_FEATURE_LARGEFILE + CFLAGS += -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 +endif +CFLAGS += -m32 -fno-omit-frame-pointer + +ifdef LISP_FEATURE_SB_THREAD + OS_LIBS += -lpthread +endif +ifdef LISP_FEATURE_SB_CORE_COMPRESSION + OS_LIBS += -lz +endif GC_SRC = gencgc.c +# Nothing to do for after-grovel-headers. +.PHONY: after-grovel-headers +after-grovel-headers: