X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2FConfig.x86-linux;h=0171ac519edb988219f654393f48f4e759a878fe;hb=7f0f521aa3f6b45259c5dfd5f7f11adcd1a7cac6;hp=b8fba0749f9c15f129c78c55b928839cba0ed275;hpb=63fcb94b875a97e468d9add229e220ecceec2352;p=sbcl.git diff --git a/src/runtime/Config.x86-linux b/src/runtime/Config.x86-linux index b8fba07..0171ac5 100644 --- a/src/runtime/Config.x86-linux +++ b/src/runtime/Config.x86-linux @@ -11,8 +11,20 @@ ASSEM_SRC = x86-assem.S ldso-stubs.S ARCH_SRC = x86-arch.c OS_SRC = linux-os.c x86-linux-os.c os-common.c -OS_LINK_FLAGS = +# 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.) +OS_LINK_FLAGS = -Wl,--export-dynamic OS_LIBS = -ldl -GC_SRC= gencgc.c -CFLAGS += -DGENCGC \ No newline at end of file +GC_SRC = gencgc.c +CFLAGS += -DGENCGC