0.8.18.14:
[sbcl.git] / src / runtime / Config.x86_64-linux
1 # This software is part of the SBCL system. See the README file for
2 # more information.
3 #
4 # This software is derived from the CMU CL system, which was
5 # written at Carnegie Mellon University and released into the
6 # public domain. The software is in the public domain and is
7 # provided with absolutely no warranty. See the COPYING and CREDITS
8 # files for more information.
9
10 ASSEM_SRC = x86-64-assem.S ldso-stubs.S
11 ARCH_SRC = x86-64-arch.c
12
13 OS_SRC = linux-os.c x86-64-linux-os.c os-common.c
14 # The "--Wl,--export-dynamic" flags are here to help people
15 # experimenting with callbacks from C to SBCL, by allowing linkage to
16 # SBCL src/runtime/*.c symbols from C. Work on this is good, but it's
17 # definitely bleeding edge and not particularly stable. In particular,
18 # not only are the workarounds for the GC relocating Lisp code and
19 # data unstable, but even the basic calling convention might end up
20 # being unstable. Unless you want to do some masochistic maintenance
21 # work when new releases of SBCL come out, please don't try to build
22 # real code on this until a coherent stable interface has been added.
23 # (You *are* encouraged to design and implement a coherent stable
24 # interface, though.:-| As far as I (WHN 2002-05-19) know, no one is
25 # working on one and it would be a nice thing to have.)
26 OS_LINK_FLAGS = -Wl,--export-dynamic
27 OS_LIBS = -ldl
28 CFLAGS =  -g -Wall -O3 -fno-omit-frame-pointer
29
30 GC_SRC = gencgc.c
31