diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2006-07-21 04:52:12 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2006-07-21 04:52:12 +0000 |
commit | 090eed48570f560a2b1f1fbc4e5458ca05b0f52f (patch) | |
tree | 5b3ca5e462fc2de26b5646f2794cd8eb2d4ed68d | |
parent | 4a4e4e0747175848f1a51b20e472334c1e8f052d (diff) |
made default optimization options more generic
svn path=/trunk/; revision=5390
-rwxr-xr-x | packages/linux_make/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/linux_make/Makefile b/packages/linux_make/Makefile index e3816c46..8f2d3ffb 100755 --- a/packages/linux_make/Makefile +++ b/packages/linux_make/Makefile @@ -20,7 +20,7 @@ include $(BUILDLAYOUT_DIR)/Makefile.buildlayout TARGET_PLATFORM := $(shell uname -m) ifeq ($(TARGET_PLATFORM),i686) # Generic x86 (tune for Pentium III, since that's more common these days) -OPT_CFLAGS += -march=i386 -mtune=pentium3 +OPT_CFLAGS += -march=i386 else ifeq ($(TARGET_PLATFORM),ppc) OPT_CFLAGS += -pipe -fsigned-char -mpowerpc-gfxopt |