config/debug/strace.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Sep 12 23:51:25 2010 +0200 (2010-09-12)
changeset 2123 ff2181adbd28
parent 1844 4d6a56579d9d
child 2444 896cb0d36c1a
permissions -rw-r--r--
cc/gcc: disable complibs if not selected

Force gcc to not link with some companion libraries when
there are not needed (because selected-out).

There is no option to tell gcc *not* to build the Graphite and/or
LTO stuff. They *will* be built if gcc finds the suitable companion
libraries. If we do not provide them, but the host has them, then
gcc *will* find them, and link with them.

Consider the following:
- host has suitable PPL and CLooG (eg. Debian Squeeze)
- user wants to build gcc>=4.4
- user de-selects GRAPHITE
- gcc will find the hosts PPL and CLooG, and will use them
- the user moves the toolchain to an older host that does
not have them (eg. Debian Lenny)
- the toolchain fails, when it was properly setup not to

So, explicitly tell gcc *not* to use unneeded companion libs.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
yann@239
     1
# strace
yann@1844
     2
# depends on ! BACKEND
yann@239
     3
yann@916
     4
config DEBUG_strace
yann@239
     5
yann@239
     6
choice
yann@239
     7
    bool
yann@239
     8
    prompt "strace version"
yann@1535
     9
# Don't remove next line
yann@1535
    10
# CT_INSERT_VERSION_BELOW
yann@239
    11
yann@2006
    12
config STRACE_V_4_5_20
yann@2006
    13
    bool
yann@2006
    14
    prompt "4.5.20 (EXPERIMENTAL)"
yann@2006
    15
    depends on EXPERIMENTAL
yann@2006
    16
yann@1613
    17
config STRACE_V_4_5_19
yann@1613
    18
    bool
yann@1785
    19
    prompt "4.5.19"
yann@1613
    20
yann@1534
    21
config STRACE_V_4_5_18
yann@239
    22
    bool
yann@1613
    23
    prompt "4.5.18"
yann@1534
    24
yann@1534
    25
config STRACE_V_4_5_17
yann@1534
    26
    bool
yann@1615
    27
    prompt "4.5.17 (OBSOLETE)"
yann@1615
    28
    depends on OBSOLETE
yann@1534
    29
yann@1534
    30
config STRACE_V_4_5_16
yann@1534
    31
    bool
yann@1615
    32
    prompt "4.5.16 (OBSOLETE)"
yann@1615
    33
    depends on OBSOLETE
yann@1534
    34
yann@1534
    35
config STRACE_V_4_5_15
yann@1534
    36
    bool
yann@1615
    37
    prompt "4.5.15 (OBSOLETE)"
yann@1615
    38
    depends on OBSOLETE
yann@239
    39
yann@239
    40
endchoice
yann@239
    41
yann@239
    42
config STRACE_VERSION
yann@239
    43
    string
yann@1535
    44
# Don't remove next line
yann@1535
    45
# CT_INSERT_VERSION_STRING_BELOW
yann@2006
    46
    default "4.5.20" if STRACE_V_4_5_20
yann@1613
    47
    default "4.5.19" if STRACE_V_4_5_19
yann@1534
    48
    default "4.5.18" if STRACE_V_4_5_18
yann@1534
    49
    default "4.5.17" if STRACE_V_4_5_17
yann@1534
    50
    default "4.5.16" if STRACE_V_4_5_16
yann@1534
    51
    default "4.5.15" if STRACE_V_4_5_15