From: havoc Date: Wed, 3 Nov 2004 17:09:44 +0000 (+0000) Subject: updated cpu optimization choices X-Git-Tag: xonotic-v0.1.0preview~5399 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=9d8eb94e9ad1098c5f6a757e4867955d7425bae9;p=xonotic%2Fdarkplaces.git updated cpu optimization choices git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@4731 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/makefile.inc b/makefile.inc index 9fcea958..79873d1d 100644 --- a/makefile.inc +++ b/makefile.inc @@ -3,15 +3,17 @@ # Choose the compiler you want to use CC=gcc -# K6/athlon optimizations -#CPUOPTIMIZATIONS=-march=k6 -# Note: don't use -march=athlon, every gcc which has it currently (2.96-3.1) -# have optimizer bugs (like entities disappearing randomly - a bug with -# compiling BOX_ON_PLANE_SIDE in mathlib.h) +# athlon optimizations #CPUOPTIMIZATIONS=-march=athlon -# 686 optimizations +# athlon xp optimizations +#CPUOPTIMIZATIONS=-march=athlon-xp +# Pentium 3 optimizations +#CPUOPTIMIZATIONS=-march=pentium3 +# Pentium 4 optimizations +#CPUOPTIMIZATIONS=-march=pentium4 +# 686 (Pentium Pro/II) optimizations #CPUOPTIMIZATIONS=-march=i686 -# No specific CPU +# No specific CPU (386 compatible) CPUOPTIMIZATIONS=