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)
This commit is contained in:
Markus Bentrup 2005-05-08 23:30:39 +00:00 committed by Jan Lindemann
commit c6cc76bf12

View file

@ -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