Skip to content
Snippets Groups Projects
gcc.opts 296 B
Newer Older
# options for gcc/g++
# remember to run ./autogen.sh after changing these values!

# name of compiler binaries
COMP="gcc"
CXXCOMP="g++"

# flags set in any case
Robert Klöfkorn's avatar
Robert Klöfkorn committed
FLAGS="-Wall"

# additional flags for debugging
DEBUGFLAGS="-g"

# additional flags for optimization
OPTIMFLAGS="-O3 -unroll -DNDEBUG"