]> git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
release build optimizations changed - removed -funroll-loops, added -O9
authorhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Sun, 6 Apr 2003 19:23:34 +0000 (19:23 +0000)
committerhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Sun, 6 Apr 2003 19:23:34 +0000 (19:23 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@2919 d7cf8633-e32d-0410-b094-e92efae38249

makefile

index 9da3b6b6d38be5313f61c0d687bb9b2f4a1ff336..a2c2bd7943be2a2385dbd6feebd6ffecc388e46c 100644 (file)
--- a/makefile
+++ b/makefile
@@ -65,8 +65,7 @@ CFLAGS_PROFILE=-g -pg -ggdb
 CFLAGS_RELEASE=
 
 OPTIM_DEBUG=
-OPTIM_RELEASE= -O6 -fno-strict-aliasing -ffast-math -funroll-loops \
-               -fexpensive-optimizations $(CPUOPTIMIZATIONS)
+OPTIM_RELEASE= -O9 -fno-strict-aliasing -ffast-math -fexpensive-optimizations $(CPUOPTIMIZATIONS)
 
 DO_CC=$(CC) $(CFLAGS) -c $< -o $@