Changeset b5aa524 for optimize


Ignore:
Timestamp:
05/08/2006 07:42:27 PM (18 years ago)
Author:
Manuel Canales Esparcia <manuel@…>
Branches:
experimental
Children:
c7e480d
Parents:
73d9790
Message:

Some textual improvements and corrections.

Location:
optimize
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • optimize/opt_config

    r73d9790 rb5aa524  
    1616#    This mode is overridden by definitions in opt_override;
    1717#    in this way, packages can be tuned independently.  For example,
    18 #    if you have trouble building a package in mode defOpt, add
     18#    if you have trouble building a package in the mode set here, add
    1919#    the package to opt_override with a different mode.
     20#
     21#    Not set here combined modes of form defOpt_myMode.
     22#    Combined modes of form modeA_modeB can be set here.
    2023DEF_OPT_MODE=O3pipe
    2124
  • optimize/opt_config.d/O3pipe

    r73d9790 rb5aa524  
    1010#          instead of just set to null.
    1111#
     12# Use this as an example for cunstomized modes
     13#
    1214#####
    1315
  • optimize/opt_config.d/O3pipe_march

    r73d9790 rb5aa524  
    99#        - "unset" will cause the variable to be not set
    1010#          instead of just set to null.
     11#
     12# Use this as an example for modeA_modeB combined modes
    1113#
    1214#####
  • optimize/opt_config.d/defOpt_fPIC

    r73d9790 rb5aa524  
     1#
     2#$Id$
     3#
    14#####
    25#
    36# MODE defOpt_fPIC configuration
    47#
     8# WARNING: Do not edit this mode unless you know what you are
     9#          doing. It's required to build Zlib.
     10#
    511# Usage: - Apply optimization string to each variable
    612#        - "unset" will cause the variable to be not set
    713#          instead of just set to null.
     14#
     15# Use this as an example for defOpt_myMode combined modes
    816#
    917#####
  • optimize/opt_config.d/noSymbols

    r73d9790 rb5aa524  
    1010#          instead of just set to null.
    1111#
     12# NOTE: If using this mode in DEF_OPT_MODE (alone or combined with
     13#       other modes) please set STRIP=0 in common/config
     14#
    1215#####
    13 #
    14 # NOTE: If using this mode in DEF_OPT_MODE (alone or combined with
    15 # other modes) please set STRIP=0 in common/config
    16 #
     16
    1717CFLAGS_noSymbols="-s"
    1818CXXFLAGS_noSymbols=$CFLAGS_noSymbols
  • optimize/optimize_functions

    r73d9790 rb5aa524  
    1313  echo -e "\t\t${RED}${BOLD}WARNING:${OFF}\n"
    1414  echo -e "${BOLD}The use of build optimizations may be dangerous.\n"
    15   echo -e "You should to know what you are doing and be sure that"
    16   echo -e "the optimization settings listed below are what you want.\n"
     15  echo -e "You should know what you are doing and be sure that the"
     16  echo -e "optimization settings listed below are what you want.\n"
    1717  echo -e "If there are build issues or the system doesn't work as"
    1818  echo -e "expected, please rebuild without optimizations before"
     
    2020
    2121  echo -e "MAKEFLAGS: ${L_arrow}${BOLD}${MAKEFLAGS}${OFF}${R_arrow}"
     22  [[ "$MAKEFLAGS" != "unset" ]] && \
    2223  echo -e "DejaGNU, Gettext, and Groff will not use MAKEFLAGS\n"
     24
    2325  echo -e "DEF_OPT_MODE: ${L_arrow}${BOLD}${DEF_OPT_MODE}${OFF}${R_arrow}\n"
    2426
Note: See TracChangeset for help on using the changeset viewer.