config/companion_libs/mpfr.in
author "Yann E. MORIN" <yann.morin.1998@free.fr>
Thu Jan 24 22:21:19 2013 +0100 (2013-01-24)
changeset 3174 239ea86a47f6
parent 2957 3e2f2100a76d
child 3208 c92461167049
permissions -rw-r--r--
cc/gcc: remove 'sub-level' version form symbols

Now we use defconfig files to store the samples, we have to be a bit more
conservatives in the symbols names, so as to avoid gigantic version bumps
when updating sub-level versions from a package.

For example (using fictitious versions):
- in crosstool-NG 1.17.0, we choose:
- latest gcc is gcc-linaro-4.7-2012.10, which is the default for the
choice in the menuconfig
- gcc-linaro-4.6-2012.10 is selected
- so, sample has an explicit symbol for the selected gcc version, as it
is not the default
- we update to crosstool-NG 1.18.0:
- latest gcc version is gcc-linaro-4.7-2013.01
- gcc-linaro-46 has been updated to gcc-linaro-4.6-2013.01
- as the sample now has no *valid* symbol to set the gcc version, the
default is used, while we would have expected to still use the 4.6
release from linaro, not the 4.7

Get rid of sub-level (ie. the third digit sequence in versions) from the
symbols for linaro versions.

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@2756
     9
config MPFR_V_3_1_0
yann@2756
    10
    bool
yann@2957
    11
    prompt "3.1.0"
yann@2756
    12
yann@2436
    13
config MPFR_V_3_0_1
yann@2436
    14
    bool
yann@2957
    15
    prompt "3.0.1"
yann@2436
    16
yann@1978
    17
config MPFR_V_3_0_0
yann@1978
    18
    bool
yann@1978
    19
    prompt "3.0.0"
yann@1978
    20
yann@1696
    21
config MPFR_V_2_4_2
yann@1696
    22
    bool
yann@1784
    23
    prompt "2.4.2"
yann@1696
    24
yann@1534
    25
config MPFR_V_2_4_1
yann@466
    26
    bool
yann@1534
    27
    prompt "2.4.1"
yann@1534
    28
yann@1534
    29
config MPFR_V_2_4_0
yann@1534
    30
    bool
yann@1534
    31
    prompt "2.4.0"
yann@466
    32
yann@466
    33
endchoice
yann@466
    34
yann@466
    35
config MPFR_VERSION
yann@466
    36
    string
yann@1535
    37
# Don't remove next line
yann@1535
    38
# CT_INSERT_VERSION_STRING_BELOW
yann@2756
    39
    default "3.1.0" if MPFR_V_3_1_0
yann@2436
    40
    default "3.0.1" if MPFR_V_3_0_1
yann@1978
    41
    default "3.0.0" if MPFR_V_3_0_0
yann@1696
    42
    default "2.4.2" if MPFR_V_2_4_2
yann@1534
    43
    default "2.4.1" if MPFR_V_2_4_1
yann@1534
    44
    default "2.4.0" if MPFR_V_2_4_0