Newer
Older
# options for gcc/g++
# remember to run ./autogen.sh after changing these values!
# name of compiler binaries
COMP="gcc"
CXXCOMP="g++-4.3.2"
FLAGS="-Wall -std=c++0x"
# additional flags for debugging
DEBUGFLAGS="-g"
# additional flags for optimizatio
#OPTIMFLAGS="-O3 -DNDEBUG -funroll-loops -finline-functions"
OPTIMFLAGS="-O3 -DNDEBUG \
-funroll-loops -finline-functions \
-fomit-frame-pointer \
--param max-inline-insns-single=6000 \
--param large-function-growth=6500 \
--param inline-unit-growth=6000"