config/companion_libs/mpc.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 3142 6569f6a9060c
child 3284 f9dec799e51e
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@1384
     1
# MPC options
yann@1384
     2
yann@1384
     3
choice
yann@1384
     4
    bool
yann@1384
     5
    prompt "MPC version"
yann@1535
     6
# Don't remove next line
yann@1535
     7
# CT_INSERT_VERSION_BELOW
yann@1384
     8
danielrubiob@3220
     9
config MPC_V_1_0_1
danielrubiob@3220
    10
    bool
danielrubiob@3220
    11
    prompt "1.0.1"
danielrubiob@3220
    12
danielrubiob@3220
    13
config MPC_V_1_0
danielrubiob@3220
    14
    bool
danielrubiob@3220
    15
    prompt "1.0"
danielrubiob@3220
    16
yann@2319
    17
config MPC_V_0_9
yann@2319
    18
    bool
yann@2957
    19
    prompt "0.9"
yann@2319
    20
yann@1985
    21
config MPC_V_0_8_2
yann@1985
    22
    bool
yann@2957
    23
    prompt "0.8.2"
yann@2957
    24
yann@1985
    25
yann@1695
    26
config MPC_V_0_8_1
yann@1695
    27
    bool
yann@1783
    28
    prompt "0.8.1"
yann@1695
    29
yann@1534
    30
config MPC_V_0_7
yann@1534
    31
    bool
yann@1534
    32
    prompt "0.7"
yann@1534
    33
yann@1384
    34
endchoice
yann@1384
    35
yann@1384
    36
config MPC_VERSION
yann@1384
    37
    string
yann@1535
    38
# Don't remove next line
yann@1535
    39
# CT_INSERT_VERSION_STRING_BELOW
danielrubiob@3220
    40
    default "1.0.1" if MPC_V_1_0_1
danielrubiob@3220
    41
    default "1.0" if MPC_V_1_0
yann@2319
    42
    default "0.9" if MPC_V_0_9
yann@1985
    43
    default "0.8.2" if MPC_V_0_8_2
yann@1695
    44
    default "0.8.1" if MPC_V_0_8_1
yann@1534
    45
    default "0.7" if MPC_V_0_7