X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2FConfig.x86-win32;h=beee35b249ac502f8fad697d6cff30656d2b8257;hb=f17e3d27d7ff599f9443d011d17017a2a858c81a;hp=b3418086da7dac25471b751457de7f4046040cbf;hpb=4ad987e94e9c22e954b468e44ff94f3d29755fe3;p=sbcl.git diff --git a/src/runtime/Config.x86-win32 b/src/runtime/Config.x86-win32 index b341808..beee35b 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. # @@ -25,19 +27,25 @@ 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 +OS_LINK_FLAGS = -Wl,--export-dynamic +OS_LIBS = GC_SRC = gencgc.c -CFLAGS = -g -Wall -O3 -mno-cygwin +CFLAGS = -g -Wall -O3 -fno-omit-frame-pointer 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: