aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2008-10-15 13:16:39 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2008-10-15 13:16:39 +0000
commit1b648d6a4ab7816e7ab5e4328139564946293a3b (patch)
tree5f1bf2fd42bc10ceca16a6ffb03bc066bb38e81a
parent7955a90b3d879da9b51407efb787369948f0711b (diff)
for some reason, -march stopped working on Mac OS X/powerpc
svn path=/trunk/; revision=10330
-rw-r--r--packages/darwin_app/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/darwin_app/Makefile b/packages/darwin_app/Makefile
index f2103209..20054011 100644
--- a/packages/darwin_app/Makefile
+++ b/packages/darwin_app/Makefile
@@ -35,7 +35,7 @@ OPT_CFLAGS += -O3 -funroll-loops -fomit-frame-pointer -march=powerpc -mtune=G3
else
# auto-vectorization in GCC 4.x for CPUs with SIMD
OPT_CFLAGS = -ftree-vectorize -ftree-vectorizer-verbose=2 \
- -fast -fPIC -march=7450 -mtune=7450
+ -fast -fPIC -mcpu=7450 -mtune=7450
endif
# Mac/Intels only run 10.4, so always gcc 4.x