]> de.git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
turn down optimizations to -O2 because some versions of gcc are buggy on higher settings
authorhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Tue, 15 Jul 2003 09:09:24 +0000 (09:09 +0000)
committerhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Tue, 15 Jul 2003 09:09:24 +0000 (09:09 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@3278 d7cf8633-e32d-0410-b094-e92efae38249

makefile

index 7b553fc02d0451b3b310d0c203c9bb096ebb4d82..585c7a9c83d0ea982a3a777f1522989bc50fea57 100644 (file)
--- a/makefile
+++ b/makefile
@@ -76,7 +76,7 @@ CFLAGS_PROFILE=-g -pg -ggdb
 CFLAGS_RELEASE=
 
 OPTIM_DEBUG=
-OPTIM_RELEASE= -O9 -fno-strict-aliasing -ffast-math -fexpensive-optimizations $(CPUOPTIMIZATIONS)
+OPTIM_RELEASE= -O2 -fno-strict-aliasing -ffast-math -fexpensive-optimizations $(CPUOPTIMIZATIONS)
 
 DO_CC=$(CC) $(CFLAGS) -c $< -o $@