From: havoc Date: Tue, 15 Jul 2003 09:09:24 +0000 (+0000) Subject: turn down optimizations to -O2 because some versions of gcc are buggy on higher settings X-Git-Tag: xonotic-v0.1.0preview~6524 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=a94490569845aa91e78dcaeb0527f352c946affa;p=xonotic%2Fdarkplaces.git turn down optimizations to -O2 because some versions of gcc are buggy on higher settings git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@3278 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/makefile b/makefile index 7b553fc0..585c7a9c 100644 --- 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 $@