X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2FConfig.x86-linux;h=6f12bc45beda660719b63b64a6ffbab89ba159e0;hb=4ba392170e98744f0ef0b8e08a5d42b988f1d0c9;hp=ce7bf1f4cff19f79c5b5c600a77dcfd9e3a8950b;hpb=a530bbe337109d898d5b4a001fc8f1afa3b5dc39;p=sbcl.git diff --git a/src/runtime/Config.x86-linux b/src/runtime/Config.x86-linux index ce7bf1f..6f12bc4 100644 --- a/src/runtime/Config.x86-linux +++ b/src/runtime/Config.x86-linux @@ -1,18 +1,49 @@ -CPPFLAGS = -I. +# -*- makefile -*- for the C-level run-time support for SBCL -CC = gcc -Wstrict-prototypes -O2 -fno-strength-reduce # -Wall -LD = ld -CPP = cpp -CFLAGS = -g -O2 -DGENCGC -ASFLAGS = -g -DGENCGC -LINKFLAGS = -g -NM = nm -p +# This software is part of the SBCL system. See the README file for +# more information. +# +# This software is derived from the CMU CL system, which was +# written at Carnegie Mellon University and released into the +# public domain. The software is in the public domain and is +# provided with absolutely no warranty. See the COPYING and CREDITS +# files for more information. -ASSEM_SRC = x86-assem.S linux-stubs.S +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 + +# 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 +# definitely bleeding edge and not particularly stable. In particular, +# not only are the workarounds for the GC relocating Lisp code and +# data unstable, but even the basic calling convention might end up +# being unstable. Unless you want to do some masochistic maintenance +# work when new releases of SBCL come out, please don't try to build +# real code on this until a coherent stable interface has been added. +# (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 -m32 +OS_LIBS = -ldl + +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 -OS_SRC = linux-os.c os-common.c -OS_LINK_FLAGS= -OS_LIBS= -ldl +GC_SRC = gencgc.c -GC_SRC= gencgc.c +# Nothing to do for after-grovel-headers. +.PHONY: after-grovel-headers +after-grovel-headers: