Update of /cvsroot/pure-data/externals/build/linux In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25425
Modified Files: makefile Log Message: added cross-platform default CPU_FLAGS
Index: makefile =================================================================== RCS file: /cvsroot/pure-data/externals/build/linux/makefile,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** makefile 28 May 2004 04:34:43 -0000 1.18 --- makefile 29 May 2004 22:54:48 -0000 1.19 *************** *** 13,21 **** .SUFFIXES: .pd_linux
# AMD Athlon XP K7 #CPU_FLAGS = -O3 -march=athlon-xp -m3dnow -msse -mfpmath=sse
! # Generic i386 (tune for 686, since that's about the bottom these days) ! CPU_FLAGS = -O2 -mcpu=i686 # Pentium III or better #CPU_FLAGS = -O3 -march=pentium3 --- 13,24 ---- .SUFFIXES: .pd_linux
+ # cross-platform default + CPU_FLAGS = -O2 + # AMD Athlon XP K7 #CPU_FLAGS = -O3 -march=athlon-xp -m3dnow -msse -mfpmath=sse
! # 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