diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2008-05-17 19:15:39 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2008-05-17 19:15:39 +0000 |
commit | 7007d5067b69480ad5d61edee496a50b6114a0c1 (patch) | |
tree | 78c360012dda8cf953e2a892cba74d0545cf172f /packages/darwin_app | |
parent | d858fa6029e1a9fbef3767862c5d4d65bcf23512 (diff) |
added -fast on Intel to enable full optimization and auto-vectorization
svn path=/trunk/; revision=9833
Diffstat (limited to 'packages/darwin_app')
-rw-r--r-- | packages/darwin_app/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/darwin_app/Makefile b/packages/darwin_app/Makefile index cac96efa..90060846 100644 --- a/packages/darwin_app/Makefile +++ b/packages/darwin_app/Makefile @@ -40,7 +40,7 @@ endif # Mac/Intels only run 10.4, so always gcc 4.x ifeq ($(TARGET_PLATFORM),i386) -OPT_CFLAGS = -march=pentium4 -msse2 -mfpmath=sse \ +OPT_CFLAGS = -fast -fPIC -march=pentium4 -msse2 -mfpmath=sse \ -ftree-vectorize -ftree-vectorizer-verbose=2 endif |