[PD-cvs] SF.net SVN: pure-data: [9954] branches/pd-extended/v0-40/packages/ linux_make/Makefile

eighthave at users.sourceforge.net eighthave at users.sourceforge.net
Sat May 31 15:00:41 CEST 2008


Revision: 9954
          http://pure-data.svn.sourceforge.net/pure-data/?rev=9954&view=rev
Author:   eighthave
Date:     2008-05-31 06:00:41 -0700 (Sat, 31 May 2008)

Log Message:
-----------
replaced -mcpu with -mtune to eliminate warning; turned off auto-vectorization for the release since there are still a number of type-punning problems

Modified Paths:
--------------
    branches/pd-extended/v0-40/packages/linux_make/Makefile

Modified: branches/pd-extended/v0-40/packages/linux_make/Makefile
===================================================================
--- branches/pd-extended/v0-40/packages/linux_make/Makefile	2008-05-31 12:27:55 UTC (rev 9953)
+++ branches/pd-extended/v0-40/packages/linux_make/Makefile	2008-05-31 13:00:41 UTC (rev 9954)
@@ -24,7 +24,7 @@
 TARGET_PLATFORM := $(shell uname -m)
 ifeq ($(TARGET_PLATFORM),i686)
 # Generic x86 (tune for Pentium III, since that's more common these days)
-OPT_CFLAGS += -mcpu=i686 -march=i386
+OPT_CFLAGS += -mtune=i686 -march=i386
 #OPT_CFLAGS += -march=pentium3 -msse -mfpmath=sse
 #OPT_CFLAGS += -march=pentium4 -msse -msse2 -mfpmath=sse
 endif
@@ -32,10 +32,10 @@
     OPT_CFLAGS += -pipe -fsigned-char -mpowerpc
 endif
 
-GCC_VERSION := $(shell gcc -dumpversion)
-ifeq ($(GCC_VERSION),4.1.2)
-  OPT_CFLAGS += -ftree-vectorize -ftree-vectorizer-verbose=3
-endif
+#GCC_VERSION := $(shell gcc -dumpversion)
+#ifeq ($(GCC_VERSION),4.1.2)
+#  OPT_CFLAGS += -ftree-vectorize -ftree-vectorizer-verbose=3
+#endif
 
 # lots more here: http://www.gentoo.se/docs/doc-cflags.php
 


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Pd-cvs mailing list