Fix to get compile working again on slightly older systems.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@31548 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2010-10-22 07:25:57 +00:00
parent 97e831876f
commit ef81066edc
2 changed files with 6 additions and 3 deletions

View file

@ -1,3 +1,9 @@
2010-10-22 Richard Frith-Macdonald <rfm@gnu.org>
* Source/ObjectiveC2/GNUmakefile:
Do not set -march=i686 when on an x86 system as it breaks compilation
for other cpu types.
2010-10-19 Jonathan Gillaspie <jonathan.gillaspie@testplant.com>
* Source/Additions/NSError+GNUstepBase.m: Prevent SegFault when

View file

@ -54,9 +54,6 @@ ObjectiveC2_HEADER_FILES = \
ifeq ($(CC), clang)
ADDITIONAL_OBJCFLAGS = -fblocks
endif
ifeq ($(GNUSTEP_TARGET_CPU), ix86)
ADDITIONAL_OBJCFLAGS += -march=i686
endif
-include Makefile.preamble