From 6af059ab26e3db2df5d5c333c9c8135a154cd558 Mon Sep 17 00:00:00 2001 From: deuce <> Date: Wed, 14 Dec 2005 02:27:46 +0000 Subject: [PATCH] Reduce RELEASE optimizations to -O2 from -O3 -O3 causes problems on some Ubuntu. Thanks RuneMaster! --- src/build/Common.gmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/build/Common.gmake b/src/build/Common.gmake index c4e6d0cabd..1fa4ac498a 100644 --- a/src/build/Common.gmake +++ b/src/build/Common.gmake @@ -323,7 +323,7 @@ ifdef DEBUG CFLAGS += -ggdb CFLAGS += -D_DEBUG else # RELEASE - CFLAGS := -O3 $(CFLAGS) + CFLAGS := -O2 $(CFLAGS) endif -include targets.mk -- GitLab