Fix cut-to-width in the presence of bad constants in dead code.
[sbcl.git] / src / runtime / Config.x86-linux
index 28ab484..6f12bc4 100644 (file)
@@ -27,17 +27,20 @@ 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
 
-CFLAGS += $(shell if grep LISP_FEATURE_LARGEFILE genesis/config.h \
-                      > /dev/null 2>&1; \
-                  then echo "-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE \
-                             -D_FILE_OFFSET_BITS=64"; fi)
-
-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