Added new axample file about combined modes.
This commit is contained in:
parent
5f7d08f1ef
commit
796ecad77e
2 changed files with 24 additions and 1 deletions
|
@ -31,7 +31,7 @@ ACTIVE_OPT_VARS="CFLAGS CXXFLAGS LDFLAGS \
|
|||
# cp opt_config.d/defOpt opt_config.d/newMode
|
||||
# ..and edit it as desired.
|
||||
#
|
||||
# To inherit another mode and add to it, see opt_config.d/defOpt_fPIC
|
||||
# To inherit another mode and add to it, see opt_config.d/defOpt_march
|
||||
# as an example. Given opt_config.d/modeA_modeB_modeC, modeB inherits
|
||||
# the optimizations of modeA by sourcing it, and modeC inherits those
|
||||
# of modeB (which includes those of modeA).
|
||||
|
|
23
optimize/opt_config.d/def_Opt_march
Normal file
23
optimize/opt_config.d/def_Opt_march
Normal file
|
@ -0,0 +1,23 @@
|
|||
#
|
||||
#$Id$
|
||||
#
|
||||
#####
|
||||
#
|
||||
# MODE defOpt_march configuration
|
||||
#
|
||||
# Usage: - Apply optimization string to each variable
|
||||
# - "unset" will cause the variable to be not set
|
||||
# instead of just set to null.
|
||||
#
|
||||
#####
|
||||
|
||||
# Inherit optimizations from defOpt
|
||||
source optimize/opt_config.d/defOpt
|
||||
|
||||
CFLAGS_defOpt_fPIC=$CFLAGS_defOpt" -march=pentium4"
|
||||
CXXFLAGS_defOpt_fPIC=$CFLAGS_defOpt" -march=pentium4"
|
||||
LDFLAGS_defOpt_fPIC=$LDFLAGS_defOpt
|
||||
|
||||
OTHER_CFLAGS_defOpt_fPIC=$CFLAGS_defOpt" -march=pentium4"
|
||||
OTHER_CXXFLAGS_defOpt_fPIC=$CXXFLAGS_defOpt" -march=pentium4"
|
||||
OTHER_LDFLAGS_defOpt_fPIC=$LDFLAGS_defOpt
|
Reference in a new issue