Update of /cvsroot/pure-data/packages/darwin_app
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6349
Modified Files:
Tag: branch-v0-39-2-extended
Makefile
Log Message:
switched -mcpu to support all G4s; removed auto-vectorization on Intel Mac since it triggers bugs 1692649 1645862
Index: Makefile
===================================================================
RCS file: /cvsroot/pure-data/packages/darwin_app/Makefile,v
retrieving revision 1.65.2.9
retrieving revision 1.65.2.10
diff -C2 -d -r1.65.2.9 -r1.65.2.10
*** Makefile 4 Jun 2007 20:55:01 -0000 1.65.2.9
--- Makefile 12 Jun 2007 04:29:43 -0000 1.65.2.10
***************
*** 36,46 ****
# auto-vectorization in GCC 4.x for CPUs with SIMD
OPT_CFLAGS = -ftree-vectorize -ftree-vectorizer-verbose=2 \
! -fast -fPIC -mcpu=7450 -mtune=7450
endif
# Mac/Intels only run 10.4, so always gcc 4.x
ifeq ($(TARGET_PLATFORM),i386)
! OPT_CFLAGS = -march=pentium4 -msse2 -mfpmath=sse \
! -ftree-vectorize -ftree-vectorizer-verbose=2
endif
--- 36,48 ----
# auto-vectorization in GCC 4.x for CPUs with SIMD
OPT_CFLAGS = -ftree-vectorize -ftree-vectorizer-verbose=2 \
! -fast -fPIC -mcpu=7400 -mtune=7400
endif
# Mac/Intels only run 10.4, so always gcc 4.x
+ # auto-vectorization causes bugs: 1692649 1645862
ifeq ($(TARGET_PLATFORM),i386)
! OPT_CFLAGS = -march=pentium4 -msse2 -mfpmath=sse
! #OPT_CFLAGS = -march=pentium4 -msse2 -mfpmath=sse \
! # -ftree-vectorize -ftree-vectorizer-verbose=2
endif