From c6cc76bf12b08d537fc451147e6d8d9281b8c157 Mon Sep 17 00:00:00 2001 From: Markus Bentrup Date: Sun, 8 May 2005 23:30:39 +0000 Subject: [PATCH] defs.mk: Change compiler opts from -O2 -> -O3 Change compiler optimization opts from -O2 to O3 because they were like that on dspjan when we encountered an obscure cpuload bug when using dspcd-jackmix (or jmtest without jackd running with -R option) --- make/defs.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/make/defs.mk b/make/defs.mk index d421f921..5079ee36 100644 --- a/make/defs.mk +++ b/make/defs.mk @@ -306,8 +306,8 @@ else endif ifeq ($(USE_COMPILER_OPTIMIZATION_OPTS),true) - PROJECT_CFLAGS += -funroll-loops -O2 - PROJECT_CPPFLAGS += -funroll-loops -O2 + PROJECT_CFLAGS += -funroll-loops -O3 + PROJECT_CPPFLAGS += -funroll-loops -O3 endif