Update of /cvsroot/pure-data/packages/linux_make In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28625
Modified Files: Makefile Log Message: switched to more basic optimization flags since gcc 3 crashes when using sse flags
Index: Makefile =================================================================== RCS file: /cvsroot/pure-data/packages/linux_make/Makefile,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** Makefile 13 Dec 2006 05:55:42 -0000 1.22 --- Makefile 16 Dec 2006 17:30:54 -0000 1.23 *************** *** 20,25 **** ifeq ($(TARGET_PLATFORM),i686) # Generic x86 (tune for Pentium III, since that's more common these days) ! #OPT_CFLAGS += -march=i386 ! OPT_CFLAGS += -march=pentium3 -msse -mfpmath=sse endif ifeq ($(TARGET_PLATFORM),ppc) --- 20,25 ---- ifeq ($(TARGET_PLATFORM),i686) # Generic x86 (tune for Pentium III, since that's more common these days) ! OPT_CFLAGS += -mcpu=i386 -mtune=pentium3 ! #OPT_CFLAGS += -march=pentium3 -msse -mfpmath=sse endif ifeq ($(TARGET_PLATFORM),ppc)