1.0.23.9: extend pa_alloc to accept a page_type_flag
[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,-mno-cygwin
29 OS_LIBS = -mno-cygwin
30
31 GC_SRC = gencgc.c
32
33 CFLAGS =  -g -Wall -O3 -mno-cygwin
34 ASFLAGS = $(CFLAGS)
35
36 CPP = cpp
37 CC = gcc
38 LD = ld
39 NM = nm
40
41 # Nothing to do for after-grovel-headers.
42 .PHONY: after-grovel-headers
43 after-grovel-headers: