config/companion_libs/mpfr.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
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@466
     1
# GMP options
yann@466
     2
yann@466
     3
choice
yann@466
     4
    bool
yann@466
     5
    prompt "MPFR version"
yann@1535
     6
# Don't remove next line
yann@1535
     7
# CT_INSERT_VERSION_BELOW
yann@466
     8
yann@3208
     9
config MPFR_V_3_1_2
yann@3208
    10
    bool
yann@3208
    11
    prompt "3.1.2"
yann@3208
    12
yann@2756
    13
config MPFR_V_3_1_0
yann@2756
    14
    bool
yann@2957
    15
    prompt "3.1.0"
yann@2756
    16
yann@2436
    17
config MPFR_V_3_0_1
yann@2436
    18
    bool
yann@2957
    19
    prompt "3.0.1"
yann@2436
    20
yann@1978
    21
config MPFR_V_3_0_0
yann@1978
    22
    bool
yann@1978
    23
    prompt "3.0.0"
yann@1978
    24
yann@1696
    25
config MPFR_V_2_4_2
yann@1696
    26
    bool
yann@1784
    27
    prompt "2.4.2"
yann@1696
    28
yann@1534
    29
config MPFR_V_2_4_1
yann@466
    30
    bool
yann@1534
    31
    prompt "2.4.1"
yann@1534
    32
yann@1534
    33
config MPFR_V_2_4_0
yann@1534
    34
    bool
yann@1534
    35
    prompt "2.4.0"
yann@466
    36
yann@466
    37
endchoice
yann@466
    38
yann@466
    39
config MPFR_VERSION
yann@466
    40
    string
yann@1535
    41
# Don't remove next line
yann@1535
    42
# CT_INSERT_VERSION_STRING_BELOW
yann@3208
    43
    default "3.1.2" if MPFR_V_3_1_2
yann@2756
    44
    default "3.1.0" if MPFR_V_3_1_0
yann@2436
    45
    default "3.0.1" if MPFR_V_3_0_1
yann@1978
    46
    default "3.0.0" if MPFR_V_3_0_0
yann@1696
    47
    default "2.4.2" if MPFR_V_2_4_2
yann@1534
    48
    default "2.4.1" if MPFR_V_2_4_1
yann@1534
    49
    default "2.4.0" if MPFR_V_2_4_0