]> de.git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
changed release optimizations from -O2 -ffast-math -funroll-loops to simply -O2,...
authorhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Fri, 25 Aug 2006 08:53:39 +0000 (08:53 +0000)
committerhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Fri, 25 Aug 2006 08:53:39 +0000 (08:53 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@6563 d7cf8633-e32d-0410-b094-e92efae38249

makefile.inc

index eca83c29920c78734a4d5cb7c5e30e6fc125a225..ccd51aaa2eee1e9d677f879e4c709ad3e7961544 100644 (file)
@@ -145,7 +145,10 @@ CFLAGS_RELEASE=
 CFLAGS_SDL=`$(SDL_CONFIG) --cflags`
 
 OPTIM_DEBUG=$(CPUOPTIMIZATIONS)
-OPTIM_RELEASE=-O2 -fno-strict-aliasing -ffast-math -funroll-loops $(CPUOPTIMIZATIONS)
+#OPTIM_RELEASE=-O2 -fno-strict-aliasing -ffast-math -funroll-loops $(CPUOPTIMIZATIONS)
+#OPTIM_RELEASE=-O2 -fno-strict-aliasing -fno-math-errno -fno-trapping-math -ffinite-math-only -fno-signaling-nans -fcx-limited-range -funroll-loops $(CPUOPTIMIZATIONS)
+#OPTIM_RELEASE=-O2 -funroll-loops $(CPUOPTIMIZATIONS)
+OPTIM_RELEASE=-O2 $(CPUOPTIMIZATIONS)
 
 DO_CC=$(CC) $(CFLAGS) -c $< -o $@