diff --git a/ChangeLog b/ChangeLog index 64fbc862b..d2ed60fad 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2010-10-22 Richard Frith-Macdonald + + * 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 * Source/Additions/NSError+GNUstepBase.m: Prevent SegFault when diff --git a/Source/ObjectiveC2/GNUmakefile b/Source/ObjectiveC2/GNUmakefile index 5037e707e..a1b822d98 100644 --- a/Source/ObjectiveC2/GNUmakefile +++ b/Source/ObjectiveC2/GNUmakefile @@ -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