From 3345828a0abc76dcb0ce45d054caa53ceff1da01 Mon Sep 17 00:00:00 2001 From: Barry Harris <44396066+barry65536@users.noreply.github.com> Date: Tue, 20 Dec 2011 21:13:52 +0000 Subject: [PATCH] Reduce optimisation in GCC 3.4.5 builds to match other GCC builds (fixes a crash when scanning for snes roms, which I spent way too long finding!) --- makefile.mingw | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile.mingw b/makefile.mingw index 8baf069f9..dc48f4f8f 100644 --- a/makefile.mingw +++ b/makefile.mingw @@ -173,7 +173,7 @@ CFLAGS = -pipe \ $(DEF) $(incdir) # `sdl-config --cflags` CXXFLAGS = -pipe \ - -march=$(CPUTYPE) -O3 \ + -march=$(CPUTYPE) -O1 \ -mno-cygwin -mwindows \ -fforce-mem -fforce-addr -finline-limit=1200 -fthread-jumps \ -freduce-all-givs -fmove-all-movables -fexpensive-optimizations \