Attempt to fix linkage errors for 32bit intel platforms.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/dbuskit/trunk@32411 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Niels Grewe 2011-02-28 14:27:39 +00:00
parent d9585b46d0
commit 7d3ca59a1c
2 changed files with 13 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2011-02-28 Niels Grewe <niels.grewe@halbordnung.de>
* Source/GNUmakefile: Attempt to fix linkage errors for 32bit
intel platforms.
2011-02-27 Niels Grewe <niels.grewe@halbordnung.de>
* Documentation/DBusKit.gsdoc: Documentation improvement.

View File

@ -52,6 +52,14 @@ ifneq ($(nonstrict), yes)
DBusKit_OBJCFLAGS += -Werror
endif
ifneq ($(findstring gcc, $(CC)),)
# Make gcc emit the correct code for synchronisation intrinsics
ifeq ($(GNUSTEP_TARGET_CPU), ix86)
DBusKit_OBJCFLAGS += -march=i586
endif
endif
-include ../GNUmakefile.preamble
include $(GNUSTEP_MAKEFILES)/framework.make