Removed -s from defOpt and added a note about STRIP in noSymbols.
This commit is contained in:
parent
bb8e6bca67
commit
fb6b1c57f5
2 changed files with 6 additions and 3 deletions
|
@ -11,9 +11,9 @@
|
|||
#
|
||||
#####
|
||||
|
||||
CFLAGS_defOpt="-O3 -pipe -s"
|
||||
CFLAGS_defOpt="-O3 -pipe"
|
||||
CXXFLAGS_defOpt=$CFLAGS_defOpt
|
||||
LDFLAGS_defOpt="-s"
|
||||
LDFLAGS_defOpt="unset"
|
||||
|
||||
OTHER_CFLAGS_defOpt=$CFLAGS_defOpt
|
||||
OTHER_CXXFLAGS_defOpt=$CXXFLAGS_defOpt
|
||||
|
|
|
@ -10,7 +10,10 @@
|
|||
# instead of just set to null.
|
||||
#
|
||||
#####
|
||||
|
||||
#
|
||||
# NOTE: If using this mode in DEF_OPT_LVL (alone or combined with
|
||||
# other mode) please set STRIP=0 in common/config
|
||||
#
|
||||
CFLAGS_noSymbols="-s"
|
||||
CXXFLAGS_noSymbols=$CFLAGS_noSymbols
|
||||
LDFLAGS_noSymbols="-s"
|
||||
|
|
Reference in a new issue