]> de.git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
removed -fexpensive-optimizations (which is turned on by -O2), added -funroll-loops
authorhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Fri, 19 Mar 2004 10:16:43 +0000 (10:16 +0000)
committerhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Fri, 19 Mar 2004 10:16:43 +0000 (10:16 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@4042 d7cf8633-e32d-0410-b094-e92efae38249

makefile.inc

index 5996e981df6e8a2c3ba2ece8d4fe63d02157e6fb..4ae92164a199e1fe34f5b9a8d85b522827a11284 100644 (file)
@@ -117,7 +117,7 @@ CFLAGS_PROFILE=-g -pg -ggdb
 CFLAGS_RELEASE=
 
 OPTIM_DEBUG=
-OPTIM_RELEASE=-O2 -fno-strict-aliasing -ffast-math -fexpensive-optimizations $(CPUOPTIMIZATIONS)
+OPTIM_RELEASE=-O2 -fno-strict-aliasing -ffast-math -funroll-loops $(CPUOPTIMIZATIONS)
 
 DO_CC=$(CC) $(CFLAGS) -c $< -o $@