aboutsummaryrefslogtreecommitdiffstats
path: root/optimize/opt_config
blob: e17b5e37a1e7640814817e8365d72c9dddf8438e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#####
#
# optimization configuration file
#
#####
#
#$Id$
#

#--- List of packages that have issues with parallelization.
#    This list may be different for you.
BLACK_LIST="attr autoconf coreutils dejagnu gettext gperf groff man-db vim"
#    Rationale for attr, coreutils, gperf: the tests do not pass with -jX
#    CLFS packages
BLACK_LIST="$BLACK_LIST libee"

#--- Default optimization mode
#    This mode is overridden by definitions in opt_override;
#    in this way, packages can be tuned independently.  For example,
#    if you have trouble building a package in the mode set here, add
#    the package to opt_override with a different mode.
#
#    Not set here combined modes of form defOpt_myMode.
#    Combined modes of form modeA_modeB can be set here.
DEF_OPT_MODE=noOpt


#--- Active optimization variables
#    Variables listed here will be set as defined in the appropriate
#    file in opt_config.d/; others will be ignored.
ACTIVE_OPT_VARS="CFLAGS CXXFLAGS LDFLAGS \
                 OTHER_CFLAGS OTHER_CXXFLAGS OTHER_LDFLAGS"

#--- Load optimization modes
#    To add modes, create a working template..
#      cp opt_config.d/O3pipe opt_config.d/newMode
#    ..and edit it as desired.
#
#    To inherit another mode and add to it, see opt_config.d/O3pipe_march
#    or opt_config.d/defOpt_fPIC as examples for two different ways of
#    doing it.  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).
#
#    Add packages that are to use this mode to opt_override with:
#      echo 'myPkg  newMode' >> opt_override
for mode in optimize/opt_config.d/* ; do
  source $mode
done