Changeset eca59ce


Ignore:
Timestamp:
05/05/2006 06:35:55 PM (18 years ago)
Author:
Manuel Canales Esparcia <manuel@…>
Branches:
experimental
Children:
bb8e6bc
Parents:
d0e48ec
Message:

Textual corrections.

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • common/config

    rd0e48ec reca59ce  
    3737#--- Optimize the build  [0-2]
    3838#  0 = no optimization
    39 #  1 = optimize chapter06 only
    40 #  2 = optimize both chapter05 and chapter06
     39#  1 = optimize final system only
     40#  2 = optimize both temporary tools and final system
    4141#
    42 # Optimization values are set in opt_config and opt_override
     42# Optimization values are set in optimize/* files
    4343OPTIMIZE=0
    4444
  • optimize/opt_config

    rd0e48ec reca59ce  
    99
    1010#--- Default optimization mode
    11 #    This level is overridden by definitions in common/opt_override;
     11#    This level is overridden by definitions in opt_override;
    1212#    in this way, packages can be tuned independently.  For example,
    1313#    if you have trouble building a package in mode defOpt, add
    14 #    the package to common/opt_override with a different mode.
     14#    the package to opt_override with a different mode.
    1515DEF_OPT_LVL=defOpt
    1616
     
    1818#--- Active optimization variables
    1919#    Variables listed here will be set as defined in the appropriate
    20 #    file in common/opt_config.d/; others will be ignored.
     20#    file in opt_config.d/; others will be ignored.
    2121ACTIVE_OPT_VARS="CFLAGS CXXFLAGS LDFLAGS \
    2222                 OTHER_CFLAGS OTHER_CXXFLAGS OTHER_LDFLAGS"
     
    3434#    Add packages that are to use this mode to opt_override with:
    3535#      echo 'myPkg  newMode' >> opt_override
    36 for mode in $COMMON_DIR/opt_config.d/* ; do
     36for mode in optimize/opt_config.d/* ; do
    3737  source $mode
    3838done
  • optimize/opt_config.d/defOpt_fPIC

    rd0e48ec reca59ce  
    1313
    1414# Inherit optimizations from defOpt
    15 source $COMMON_DIR/opt_config.d/defOpt
     15source optimize/opt_config.d/defOpt
    1616
    1717CFLAGS_defOpt_fPIC=$CFLAGS_defOpt" -fPIC"
Note: See TracChangeset for help on using the changeset viewer.