config/debug/strace.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 3142 6569f6a9060c
child 3255 4f3536b12be5
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@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
bryanhundven@2733
    11
config STRACE_V_4_6
bryanhundven@2733
    12
    bool
yann@3149
    13
    prompt "4.6"
yann@2868
    14
    depends on CONFIGURE_has_xz
bryanhundven@2733
    15
yann@2006
    16
config STRACE_V_4_5_20
yann@2006
    17
    bool
yann@3149
    18
    prompt "4.5.20"
yann@2006
    19
yann@1613
    20
config STRACE_V_4_5_19
yann@1613
    21
    bool
yann@1785
    22
    prompt "4.5.19"
yann@1613
    23
yann@1534
    24
config STRACE_V_4_5_18
yann@239
    25
    bool
yann@1613
    26
    prompt "4.5.18"
yann@1534
    27
yann@239
    28
endchoice
yann@239
    29
yann@239
    30
config STRACE_VERSION
yann@239
    31
    string
yann@1535
    32
# Don't remove next line
yann@1535
    33
# CT_INSERT_VERSION_STRING_BELOW
bryanhundven@2733
    34
    default "4.6" if STRACE_V_4_6
yann@2006
    35
    default "4.5.20" if STRACE_V_4_5_20
yann@1613
    36
    default "4.5.19" if STRACE_V_4_5_19
yann@1534
    37
    default "4.5.18" if STRACE_V_4_5_18