Update of /cvsroot/pure-data/externals/build/darwin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22309
Modified Files: makefile Log Message: tested and tweaked optimizations
Index: makefile =================================================================== RCS file: /cvsroot/pure-data/externals/build/darwin/makefile,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** makefile 27 May 2004 23:13:49 -0000 1.13 --- makefile 28 May 2004 03:57:52 -0000 1.14 *************** *** 11,24 **** PDEXECUTABLE = ../../../pd/bin/pd
! # Pentium III or better ! #CPU_FLAGS = -march=pentium3 ! # PowerPC G3 ! #CPU_FLAGS = -mpowerpc-gpopt ! # PowerPC G4 (gcc-3.3) ! #CPU_FLAGS = -fast -mcpu=G4 # PowerPC G5 (gcc-3.3) ! #CPU_FLAGS = -fast ! ! OPTIM_FLAGS = -O3 -funroll-loops -fomit-frame-pointer $(CPU_FLAGS)
CFLAGS = -DPD -DUNIX -DMACOSX -Dunix $(OPTIM_FLAGS) \ --- 11,25 ---- PDEXECUTABLE = ../../../pd/bin/pd
! ## These generally need gcc-3.3 ! # Generic PowerPC ! OPTIM_FLAGS = -mpowerpc-gpopt ! # PowerPC 750 (G3) ! #OPTIM_FLAGS = -mpowerpc-gpopt -mcpu=750 ! # PowerPC 7400 (G4 <= 700Mhz) ! #OPTIM_FLAGS = -fast -fPIC -mcpu=7400 -faltivec ! # PowerPC 7450 (G4 >= 533MHz) ! #OPTIM_FLAGS = -fast -fPIC -mcpu=7450 -faltivec # PowerPC G5 (gcc-3.3) ! #OPTIM_FLAGS = -fast -fPIC -faltivec
CFLAGS = -DPD -DUNIX -DMACOSX -Dunix $(OPTIM_FLAGS) \