[intel/portage] add -ggdb to CFLAGS

There is no speed penalty and debug files will contain more information
out of the box.
This commit is contained in:
Fabio Erculiani
2013-02-07 15:29:58 +01:00
parent 0f7c0bc844
commit da587bb484
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -4,7 +4,7 @@
# Compiler stuff
GRAPHITE="-floop-interchange -ftree-loop-distribution -floop-strip-mine -floop-block"
# Only enable Graphite via package.env
CFLAGS="-O2 -march=x86-64 -pipe" # -ftree-vectorize ${GRAPHITE}"
CFLAGS="-O2 -march=x86-64 -pipe -ggdb" # -ftree-vectorize ${GRAPHITE}"
CHOST="x86_64-pc-linux-gnu"
CXXFLAGS="${CFLAGS}"
LDFLAGS="-Wl,-O1 -Wl,--as-needed"
+1 -1
View File
@@ -4,7 +4,7 @@
# Compiler stuff
GRAPHITE="-floop-interchange -ftree-loop-distribution -floop-strip-mine -floop-block"
# Only enable Graphite via package.env
CFLAGS="-O2 -march=i686 -pipe" # -ftree-vectorize ${GRAPHITE}"
CFLAGS="-O2 -march=i686 -pipe -ggdb" # -ftree-vectorize ${GRAPHITE}"
CHOST="i686-pc-linux-gnu"
CXXFLAGS="${CFLAGS}"
LDFLAGS="-Wl,-O1 -Wl,--as-needed"