X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2FConfig.x86-win32;h=a047e6342a69ed870628ca9f21bc948ef8778160;hb=c712f88b26cd7547ee984b90e18c134401335bc3;hp=cebd1357abeffa7c0be1901e74ca2f907e39c0c3;hpb=7fb597b585fc715537ea644f7d84440eca217ca1;p=sbcl.git diff --git a/src/runtime/Config.x86-win32 b/src/runtime/Config.x86-win32 index cebd135..a047e63 100644 --- a/src/runtime/Config.x86-win32 +++ b/src/runtime/Config.x86-win32 @@ -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 @@ -27,13 +30,26 @@ OS_SRC = win32-os.c x86-win32-os.c os-common.c # working on one and it would be a nice thing to have.) OS_LINK_FLAGS = -Wl,--export-dynamic OS_LIBS = +ifdef LISP_FEATURE_SB_CORE_COMPRESSION + OS_LIBS += -lz +endif GC_SRC = gencgc.c -CFLAGS = -g -Wall -O3 +CFLAGS = -g -Wall -O3 -fno-omit-frame-pointer -mno-cygwin -march=i686 -DWINVER=0x0501 ASFLAGS = $(CFLAGS) -CPP = /opt/xmingw/bin/i386-mingw32msvc-cpp -CC = /opt/xmingw/bin/i386-mingw32msvc-gcc -LD = /opt/xmingw/bin/i386-mingw32msvc-ld -NM = /opt/xmingw/bin/i386-mingw32msvc-nm +CPP = cpp +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: