Textual corrections.

This commit is contained in:
Manuel Canales Esparcia 2006-05-05 18:35:55 +00:00
parent d0e48ec610
commit eca59cefc4
3 changed files with 8 additions and 8 deletions

View file

@ -36,10 +36,10 @@ RUNMAKE=0
#--- Optimize the build [0-2] #--- Optimize the build [0-2]
# 0 = no optimization # 0 = no optimization
# 1 = optimize chapter06 only # 1 = optimize final system only
# 2 = optimize both chapter05 and chapter06 # 2 = optimize both temporary tools and final system
# #
# Optimization values are set in opt_config and opt_override # Optimization values are set in optimize/* files
OPTIMIZE=0 OPTIMIZE=0
#--- Run test suites [0-3] #--- Run test suites [0-3]

View file

@ -8,16 +8,16 @@
# #
#--- Default optimization mode #--- Default optimization mode
# This level is overridden by definitions in common/opt_override; # This level is overridden by definitions in opt_override;
# in this way, packages can be tuned independently. For example, # in this way, packages can be tuned independently. For example,
# if you have trouble building a package in mode defOpt, add # if you have trouble building a package in mode defOpt, add
# the package to common/opt_override with a different mode. # the package to opt_override with a different mode.
DEF_OPT_LVL=defOpt DEF_OPT_LVL=defOpt
#--- Active optimization variables #--- Active optimization variables
# Variables listed here will be set as defined in the appropriate # Variables listed here will be set as defined in the appropriate
# file in common/opt_config.d/; others will be ignored. # file in opt_config.d/; others will be ignored.
ACTIVE_OPT_VARS="CFLAGS CXXFLAGS LDFLAGS \ ACTIVE_OPT_VARS="CFLAGS CXXFLAGS LDFLAGS \
OTHER_CFLAGS OTHER_CXXFLAGS OTHER_LDFLAGS" OTHER_CFLAGS OTHER_CXXFLAGS OTHER_LDFLAGS"
@ -33,6 +33,6 @@ ACTIVE_OPT_VARS="CFLAGS CXXFLAGS LDFLAGS \
# #
# Add packages that are to use this mode to opt_override with: # Add packages that are to use this mode to opt_override with:
# echo 'myPkg newMode' >> opt_override # echo 'myPkg newMode' >> opt_override
for mode in $COMMON_DIR/opt_config.d/* ; do for mode in optimize/opt_config.d/* ; do
source $mode source $mode
done done

View file

@ -12,7 +12,7 @@
##### #####
# Inherit optimizations from defOpt # Inherit optimizations from defOpt
source $COMMON_DIR/opt_config.d/defOpt source optimize/opt_config.d/defOpt
CFLAGS_defOpt_fPIC=$CFLAGS_defOpt" -fPIC" CFLAGS_defOpt_fPIC=$CFLAGS_defOpt" -fPIC"
CXXFLAGS_defOpt_fPIC=$CFLAGS_defOpt" -fPIC" CXXFLAGS_defOpt_fPIC=$CFLAGS_defOpt" -fPIC"