[svn-r29023] Fixed typos in symbols flags that prevented using -g, etc.

Tested on: 64-bit Ubuntu 15.10 (Linux 4.2.0 x86_64) gcc 5.2.1
           serial autotools
This commit is contained in:
Dana Robinson 2016-02-01 14:28:38 -05:00
parent 6a566cdc84
commit 2fb4f0b35e
5 changed files with 10 additions and 10 deletions

View File

@ -64,8 +64,8 @@ if test "X-cce" = "X-$cc_vendor"; then
DEBUG_CPPFLAGS=
# Symbols
SYMBOL_CFLAGS="-g"
SYMBOL_CPPFLAGS=
SYMBOLS_CFLAGS="-g"
SYMBOLS_CPPFLAGS=
# Profiling
# Use this for profiling with gprof

View File

@ -127,8 +127,8 @@ case "$cc_vendor-$cc_version" in
DEBUG_CPPFLAGS=
# Symbols
SYMBOL_CFLAGS="-g"
SYMBOL_CPPFLAGS=
SYMBOLS_CFLAGS="-g"
SYMBOLS_CPPFLAGS=
# Profile
PROFILE_CFLAGS="-pg"

View File

@ -74,8 +74,8 @@ if test "XL" = "$cc_vendor"; then
DEBUG_CPPFLAGS=
# Symbols
SYMBOL_CFLAGS="-g"
SYMBOL_CPPFLAGS=
SYMBOLS_CFLAGS="-g"
SYMBOLS_CPPFLAGS=
# Profiling
PROFILE_CFLAGS="-pg"

View File

@ -80,8 +80,8 @@ if test "X-icc" = "X-$cc_vendor"; then
DEBUG_CPPFLAGS=
# Symbols
SYMBOL_CFLAGS="-g"
SYMBOL_CPPFLAGS=
SYMBOLS_CFLAGS="-g"
SYMBOLS_CPPFLAGS=
# Profiling
# Use this for profiling with gprof

View File

@ -90,8 +90,8 @@ if test "X-pgcc" = "X-$cc_vendor"; then
DEBUG_CPPFLAGS=
# Symbols
SYMBOL_CFLAGS="-g"
SYMBOL_CPPFLAGS=
SYMBOLS_CFLAGS="-g"
SYMBOLS_CPPFLAGS=
# Profiling
PROFILE_CFLAGS="-Mprof=func,line"