fixup for compiler bug on windows

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@34028 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2011-10-19 14:36:26 +00:00
parent c31e244d02
commit f24805b244
2 changed files with 20 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2011-10-19 Richard Frith-Macdonald <rfm@gnu.org>
* target.make: The -pthread compiler flag is broken on windows ...
don't use it there.
2011-10-17 Richard Frith-Macdonald <rfm@gnu.org>
* FilesystemLayouts/standalone: first draft at a layout to put

View file

@ -878,6 +878,13 @@ ifeq ($(findstring mingw32, $(GNUSTEP_TARGET_OS)), mingw32)
shared = yes
HAVE_SHARED_LIBS = yes
# There's some sort of gcc bug that -pthread doesn't work on windows
# so we need to reset the variables which use it.
INTERNAL_CFLAGS =
INTERNAL_OBJCFLAGS =
INTERNAL_LDFLAGS =
SHARED_CFLAGS =
# This command links the library, generates automatically the list of
# symbols to export, creates the DLL (eg, obj/gnustep-base-1_13.dll)
# and the import library (eg, obj/libgnustep-base.dll.a). We pass
@ -935,6 +942,14 @@ endif
ifeq ($(findstring cygwin, $(GNUSTEP_TARGET_OS)), cygwin)
shared = yes
HAVE_SHARED_LIBS = yes
# There's some sort of gcc bug that -pthread doesn't work on windows
# so we need to reset the variables which use it.
INTERNAL_CFLAGS =
INTERNAL_OBJCFLAGS =
INTERNAL_LDFLAGS =
SHARED_CFLAGS =
# This command links the library, generates automatically the list of
# symbols to export, creates the DLL (eg, obj/gnustep-base.dll) and
# the import library