Update of /cvsroot/pure-data/pd In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5369
Modified Files: Tag: devel_0_38 configure.ac Log Message: removed mtune, since it's not supported by older versions of gcc
Index: configure.ac =================================================================== RCS file: /cvsroot/pure-data/pd/Attic/configure.ac,v retrieving revision 1.1.4.5 retrieving revision 1.1.4.6 diff -C2 -d -r1.1.4.5 -r1.1.4.6 *** configure.ac 20 Jan 2005 20:27:39 -0000 1.1.4.5 --- configure.ac 22 Jan 2005 20:40:50 -0000 1.1.4.6 *************** *** 191,208 **** dnl optimization flags if test "$optimize" == "pentium4"; then ! ARCH_CFLAGS="-mtune=pentium4 -march=pentium4 -mmmx -msse -msse2 -mfpmath=sse" fi if test "$optimize" == "pentium3"; then ! ARCH_CFLAGS="-mtune=pentium3 -march=pentium3 -mmmx -msse -mfpmath=sse" fi if test "$optimize" == "athlon-xp"; then ! ARCH_CFLAGS="-mtune=athlon-xp -march=athlon-xp -mmmx -msse -mfpmath=sse" fi if test "$optimize" == "pentium2"; then ! ARCH_CFLAGS="-mtune=pentium2 -march=pentium2 -mmmx"; CFLAGS=$CFLAGS" -DDONTUSESIMD" fi if test "$optimize" == "pentium"; then ! ARCH_CFLAGS="-mtune=pentium -march=pentium" CFLAGS=$CFLAGS" -DDONTUSESIMD" fi --- 191,208 ---- dnl optimization flags if test "$optimize" == "pentium4"; then ! ARCH_CFLAGS="-march=pentium4 -mmmx -msse -msse2 -mfpmath=sse" fi if test "$optimize" == "pentium3"; then ! ARCH_CFLAGS="-march=pentium3 -mmmx -msse -mfpmath=sse" fi if test "$optimize" == "athlon-xp"; then ! ARCH_CFLAGS="-march=athlon-xp -mmmx -msse -mfpmath=sse" fi if test "$optimize" == "pentium2"; then ! ARCH_CFLAGS="-march=pentium2 -mmmx"; CFLAGS=$CFLAGS" -DDONTUSESIMD" fi if test "$optimize" == "pentium"; then ! ARCH_CFLAGS="-march=pentium" CFLAGS=$CFLAGS" -DDONTUSESIMD" fi *************** *** 239,249 **** dnl Set processor flags if test "$optimize" == "G3"; then ! OPT_CFLAGS=$OPT_CFLAGS" -mtune=G3 -mcpu=G3 -malign-natural" fi if test "$optimize" == "G4"; then ! OPT_CFLAGS=$OPT_CFLAGS" -mtune=G4 -mcpu=G4 -maltivec -malign-natural" fi if test "$optimize" == "G5"; then ! OPT_CFLAGS=$OPT_CFLAGS" -march=G5 -cpu=G5 -maltivec -malign-natural" fi
--- 239,249 ---- dnl Set processor flags if test "$optimize" == "G3"; then ! OPT_CFLAGS=$OPT_CFLAGS" -mcpu=G3 -malign-natural" fi if test "$optimize" == "G4"; then ! OPT_CFLAGS=$OPT_CFLAGS" -mcpu=G4 -maltivec -malign-natural" fi if test "$optimize" == "G5"; then ! OPT_CFLAGS=$OPT_CFLAGS" -cpu=G5 -maltivec -malign-natural" fi