Prune old and used stuff from makefiles.
[sbcl.git] / src / runtime / Config.x86-64-win32
blob4d3027d73d45b6d5ee97698293d1961273d04da7
1 # This software is part of the SBCL system. See the README file for
2 # more information.
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.
10 TARGET=sbcl.exe
12 ASSEM_SRC = x86-64-assem.S
13 ARCH_SRC = x86-64-arch.c
15 OS_SRC = win32-os.c x86-64-win32-os.c os-common.c pthreads_win32.c
17 # The "--Wl,--export-dynamic" flags are here to help people
18 # experimenting with callbacks from C to SBCL, by allowing linkage to
19 # SBCL src/runtime/*.c symbols from C. Work on this is good, but it's
20 # definitely bleeding edge and not particularly stable. In particular,
21 # not only are the workarounds for the GC relocating Lisp code and
22 # data unstable, but even the basic calling convention might end up
23 # being unstable. Unless you want to do some masochistic maintenance
24 # work when new releases of SBCL come out, please don't try to build
25 # real code on this until a coherent stable interface has been added.
26 # (You *are* encouraged to design and implement a coherent stable
27 # interface, though.:-| As far as I (WHN 2002-05-19) know, no one is
28 # working on one and it would be a nice thing to have.)
29 LINKFLAGS = -Wl,-export-all-symbols -Wl,mswin64.def -Wl,mswin.def
32 OS_LIBS = -l ws2_32 -ladvapi32
33 ifdef LISP_FEATURE_SB_CORE_COMPRESSION
34   OS_LIBS += -lz
35 endif
37 GC_SRC = gencgc.c
39 CFLAGS =  -g -W -Wall \
40        -Wno-unused-function \
41        -fno-omit-frame-pointer \
42        -O5 -m64 -DWINVER=0x0501 \
43        -D__W32API_USE_DLLIMPORT__
45 CC = gcc
47 # Nothing to do for after-grovel-headers.
48 .PHONY: after-grovel-headers
49 after-grovel-headers: