config/debug/strace.in
author "Yann E. MORIN" <yann.morin.1998@free.fr>
Mon Dec 30 19:08:37 2013 +0100 (2013-12-30)
changeset 3257 7b7d953f9cfb
parent 3149 e1611da4bb05
permissions -rw-r--r--
binutils/binutils: 2.23.2 is a 2_23_or_later (ie. has gold)

Thus spake Niels:
This commit adds support for binutils 2.23.2

http://crosstool-ng.org/hg/crosstool-ng/rev/bc4b36e3df0c

However, in 'config/binutils/binutils.in <http://binutils.in>' the
Kconfig option to select this version of binutils does not automatically
select the symbol 'BINUTILS_2_23_or_later'. This makes gold unavailable
for the latest version of binutils. I'm not sure whether this is on
purpose or not, my impression is that you forgot to add the line "select
BINUTILS_2_23_or_later".

The problem still persists in the latest version in the repository
(032ebcc89c96).

Reported-by: Niels Penneman <niels@penneman.org>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
yann@239
     1
# strace
yann@239
     2
yann@2444
     3
## depends on ! BACKEND
yann@239
     4
yann@239
     5
choice
yann@239
     6
    bool
yann@239
     7
    prompt "strace version"
yann@1535
     8
# Don't remove next line
yann@1535
     9
# CT_INSERT_VERSION_BELOW
yann@239
    10
netzimme@3255
    11
config STRACE_V_4_8
netzimme@3255
    12
    bool
netzimme@3255
    13
    prompt "4.8"
netzimme@3255
    14
    depends on CONFIGURE_has_xz
netzimme@3255
    15
netzimme@3255
    16
config STRACE_V_4_7
netzimme@3255
    17
    bool
netzimme@3255
    18
    prompt "4.7"
netzimme@3255
    19
    depends on CONFIGURE_has_xz
netzimme@3255
    20
bryanhundven@2733
    21
config STRACE_V_4_6
bryanhundven@2733
    22
    bool
yann@3149
    23
    prompt "4.6"
yann@2868
    24
    depends on CONFIGURE_has_xz
bryanhundven@2733
    25
yann@2006
    26
config STRACE_V_4_5_20
yann@2006
    27
    bool
yann@3149
    28
    prompt "4.5.20"
yann@2006
    29
yann@1613
    30
config STRACE_V_4_5_19
yann@1613
    31
    bool
yann@1785
    32
    prompt "4.5.19"
yann@1613
    33
yann@1534
    34
config STRACE_V_4_5_18
yann@239
    35
    bool
yann@1613
    36
    prompt "4.5.18"
yann@1534
    37
yann@239
    38
endchoice
yann@239
    39
yann@239
    40
config STRACE_VERSION
yann@239
    41
    string
yann@1535
    42
# Don't remove next line
yann@1535
    43
# CT_INSERT_VERSION_STRING_BELOW
netzimme@3255
    44
    default "4.8" if STRACE_V_4_8
netzimme@3255
    45
    default "4.7" if STRACE_V_4_7
bryanhundven@2733
    46
    default "4.6" if STRACE_V_4_6
yann@2006
    47
    default "4.5.20" if STRACE_V_4_5_20
yann@1613
    48
    default "4.5.19" if STRACE_V_4_5_19
yann@1534
    49
    default "4.5.18" if STRACE_V_4_5_18