diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2004-05-29 22:54:48 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2004-05-29 22:54:48 +0000 |
commit | bb334dc72dabbfff847cd7afbb6cbcb0b32baa67 (patch) | |
tree | 10d9b09f7a2c55d092fd2d7d94d81eac9664e7ca /externals | |
parent | 3347369b066393d2196dc3349d12a3ca41439fc5 (diff) |
added cross-platform default CPU_FLAGS
svn path=/trunk/; revision=1787
Diffstat (limited to 'externals')
-rw-r--r-- | externals/build/linux/makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/externals/build/linux/makefile b/externals/build/linux/makefile index fe03140d..3be133b9 100644 --- a/externals/build/linux/makefile +++ b/externals/build/linux/makefile @@ -12,11 +12,14 @@ all: $(EXTERNALS:.c=.pd_linux) .SUFFIXES: .pd_linux +# cross-platform default +CPU_FLAGS = -O2 + # 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 +# 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 |