Utility predicates for packing: UNBOUNDED-SC-P and UNBOUNDED-TN-P
[sbcl.git] / src / runtime / Config.x86-win32
index b341808..a6d2714 100644 (file)
@@ -1,3 +1,5 @@
+# -*- makefile -*- for the C-level run-time support for SBCL
+
 # This software is part of the SBCL system. See the README file for
 # more information.
 #
@@ -12,7 +14,8 @@ TARGET=sbcl.exe
 ASSEM_SRC = x86-assem.S
 ARCH_SRC = x86-arch.c
 
-OS_SRC = win32-os.c x86-win32-os.c os-common.c
+OS_SRC = win32-os.c x86-win32-os.c os-common.c pthreads_win32.c
+
 # 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
@@ -25,19 +28,30 @@ OS_SRC = win32-os.c x86-win32-os.c os-common.c
 # (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,-mno-cygwin
-OS_LIBS = -mno-cygwin
+LINKFLAGS = -Wl,-export-all-symbols -Wl,mswin.def
+OS_LIBS = -l ws2_32 -ladvapi32
+ifdef LISP_FEATURE_SB_CORE_COMPRESSION
+  OS_LIBS += -lz
+endif
 
 GC_SRC = gencgc.c
 
-CFLAGS =  -g -Wall -O3 -mno-cygwin
+CFLAGS = -g -Wall -O3 \
+        -fno-omit-frame-pointer -march=i686 -DWINVER=0x0501 \
+        -D__W32API_USE_DLLIMPORT__
 ASFLAGS = $(CFLAGS)
 
 CPP = cpp
-CC = gcc-3
+CC = gcc
 LD = ld
 NM = nm
 
+ifneq ($(findstring cygwin,$(shell $(CC) -dumpmachine)),)
+OS_LINK_FLAGS := $(OS_LINK_FLAGS) -Wl,-mno-cygwin
+OS_LIBS := $(OS_LIBS) -mno-cygwin
+CFLAGS := $(CFLAGS) -mno-cygwin
+endif
+
 # Nothing to do for after-grovel-headers.
 .PHONY: after-grovel-headers
 after-grovel-headers: