diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2004-06-16 19:37:46 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2004-06-16 19:37:46 +0000 |
commit | 7c8882d69a80ba4e0c510c6f0cf2124daf6d1a8c (patch) | |
tree | 1aa55f2471013350fa0e3087783b77dc0eceb3a2 /externals/build | |
parent | cea1d2e68f9df8b319d26a6418bdd867d1e19b39 (diff) |
added more CPU optimization options
svn path=/trunk/; revision=1814
Diffstat (limited to 'externals/build')
-rw-r--r-- | externals/build/linux/makefile | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/externals/build/linux/makefile b/externals/build/linux/makefile index 3be133b9..16e652c2 100644 --- a/externals/build/linux/makefile +++ b/externals/build/linux/makefile @@ -19,11 +19,17 @@ CPU_FLAGS = -O2 #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 -# Pentium 4 or better -#CPU_FLAGS = -O3 -march=pentium4 +# CPU_FLAGS = -O2 -mcpu=i686 +# Pentium MMX +#CPU_FLAGS = -march=pentium-mmx -mmmx +# Pentium Pro +#CPU_FLAGS = -march=pentiumpro -mmmx +# Pentium II/Celeron +#CPU_FLAGS = -mfpmath=sse -mmmx -msse -march=pentium2 +# Pentium III/Celeron2 +#CPU_FLAGS = -mfpmath=sse -mmmx -msse -march=pentium3 +# Pentium 4 +#CPU_FLAGS = -mfpmath=sse -mmmx -msse -msse2 -march=pentium4 # PowerPC 750 (G3) #CPU_FLAGS = -O3 -mpowerpc-gpopt -mcpu=750 |