From: havoc Date: Fri, 19 Mar 2004 10:16:43 +0000 (+0000) Subject: removed -fexpensive-optimizations (which is turned on by -O2), added -funroll-loops X-Git-Tag: xonotic-v0.1.0preview~5974 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=1f640dd6c5487ebc50b005a3fca0f929a883968b;p=xonotic%2Fdarkplaces.git removed -fexpensive-optimizations (which is turned on by -O2), added -funroll-loops git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@4042 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/makefile.inc b/makefile.inc index 5996e981..4ae92164 100644 --- a/makefile.inc +++ b/makefile.inc @@ -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 $@