mirror of
https://github.com/gnustep/tools-make.git
synced 2025-04-23 22:33:28 +00:00
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:
parent
c31e244d02
commit
f24805b244
2 changed files with 20 additions and 0 deletions
|
@ -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
|
||||
|
|
15
target.make
15
target.make
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue