Revision: 10253 http://pure-data.svn.sourceforge.net/pure-data/?rev=10253&view=rev Author: eighthave Date: 2008-08-18 16:43:44 +0000 (Mon, 18 Aug 2008)
Log Message: ----------- changed deprecated -mcpu flags to -march
Modified Paths: -------------- trunk/packages/darwin_app/Makefile
Modified: trunk/packages/darwin_app/Makefile =================================================================== --- trunk/packages/darwin_app/Makefile 2008-08-18 14:37:38 UTC (rev 10252) +++ trunk/packages/darwin_app/Makefile 2008-08-18 16:43:44 UTC (rev 10253) @@ -31,11 +31,11 @@ # 10.3 uses gcc 3.3, and 10.3 only runs on PowerPC GCC_VERSION := $(shell gcc -dumpversion) ifeq ($(GCC_VERSION),3.3) -OPT_CFLAGS += -O3 -funroll-loops -fomit-frame-pointer -mcpu=powerpc -mtune=G3 +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 -mcpu=7450 -mtune=7450 + -fast -fPIC -march=7450 -mtune=7450 endif
# Mac/Intels only run 10.4, so always gcc 4.x
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.