From 039b272d3f795a0e5ffe33368e4d4114c3e63baa Mon Sep 17 00:00:00 2001 From: rfm Date: Fri, 22 Oct 2010 07:25:57 +0000 Subject: [PATCH] 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 --- ChangeLog | 6 ++++++ Source/ObjectiveC2/GNUmakefile | 3 --- 2 files changed, 6 insertions(+), 3 deletions(-) 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