Update of /cvsroot/pure-data/externals/build/linux In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6632
Modified Files: makefile Log Message: added more CPU optimization options
Index: makefile =================================================================== RCS file: /cvsroot/pure-data/externals/build/linux/makefile,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** makefile 29 May 2004 22:54:48 -0000 1.19 --- makefile 16 Jun 2004 19:37:46 -0000 1.20 *************** *** 20,28 ****
# Generic x86 (tune for 686, since that's most common these days) ! # CPU_FLAGS = -O2 -mcpu=i686 ! # Pentium III or better ! #CPU_FLAGS = -O3 -march=pentium3 ! # Pentium 4 or better ! #CPU_FLAGS = -O3 -march=pentium4
# PowerPC 750 (G3) --- 20,34 ----
# Generic x86 (tune for 686, since that's most common these days) ! # CPU_FLAGS = -O2 -mcpu=i686 ! # Pentium MMX ! #CPU_FLAGS = -march=pentium-mmx -mmmx ! # Pentium Pro ! #CPU_FLAGS = -march=pentiumpro -mmmx ! # Pentium II/Celeron ! #CPU_FLAGS = -mfpmath=sse -mmmx -msse -march=pentium2 ! # Pentium III/Celeron2 ! #CPU_FLAGS = -mfpmath=sse -mmmx -msse -march=pentium3 ! # Pentium 4 ! #CPU_FLAGS = -mfpmath=sse -mmmx -msse -msse2 -march=pentium4
# PowerPC 750 (G3)