0.9.8.7:
[sbcl.git] / src / runtime / Config.x86-win32
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 TARGET=sbcl.exe
11
12 ASSEM_SRC = x86-assem.S
13 ARCH_SRC = x86-arch.c
14
15 OS_SRC = win32-os.c x86-win32-os.c os-common.c
16 # The "--Wl,--export-dynamic" flags are here to help people
17 # experimenting with callbacks from C to SBCL, by allowing linkage to
18 # SBCL src/runtime/*.c symbols from C. Work on this is good, but it's
19 # definitely bleeding edge and not particularly stable. In particular,
20 # not only are the workarounds for the GC relocating Lisp code and
21 # data unstable, but even the basic calling convention might end up
22 # being unstable. Unless you want to do some masochistic maintenance
23 # work when new releases of SBCL come out, please don't try to build
24 # real code on this until a coherent stable interface has been added.
25 # (You *are* encouraged to design and implement a coherent stable
26 # interface, though.:-| As far as I (WHN 2002-05-19) know, no one is
27 # working on one and it would be a nice thing to have.)
28 OS_LINK_FLAGS = -Wl,--export-dynamic
29 OS_LIBS =
30
31 GC_SRC = gencgc.c
32
33 CFLAGS =  -g -Wall -O3
34 ASFLAGS = $(CFLAGS)
35
36 CPP = /opt/xmingw/bin/i386-mingw32msvc-cpp
37 CC = /opt/xmingw/bin/i386-mingw32msvc-gcc
38 LD = /opt/xmingw/bin/i386-mingw32msvc-ld
39 NM = /opt/xmingw/bin/i386-mingw32msvc-nm