diff options
author | Anton Leontiev <aleontiev@elvees.com> | 2014-07-01 10:25:25 +0400 |
---|---|---|
committer | Yann E. MORIN <yann.morin.1998@free.fr> | 2014-07-03 23:05:17 +0200 |
commit | 518d1dfc6e6f11e9af04b55234b4b336cdbedc08 (patch) | |
tree | 84dcee1c91de28ddc7a9350fd493d90fcdfc08b0 /config/cc | |
parent | 1a8ca5b41be6d0c37194a88cd6e1a59b612dc9ed (diff) | |
download | crosstool-ng-518d1dfc6e6f11e9af04b55234b4b336cdbedc08.tar.gz crosstool-ng-518d1dfc6e6f11e9af04b55234b4b336cdbedc08.tar.bz2 crosstool-ng-518d1dfc6e6f11e9af04b55234b4b336cdbedc08.zip |
cc/gcc: Add 4.7.4 and 4.8.3
Signed-off-by: Anton Leontiev <aleontiev@elvees.com>
Diffstat (limited to 'config/cc')
-rw-r--r-- | config/cc/gcc.in | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/config/cc/gcc.in b/config/cc/gcc.in index 9c16df68..33d5675f 100644 --- a/config/cc/gcc.in +++ b/config/cc/gcc.in @@ -47,6 +47,11 @@ config CC_V_linaro_4_8 depends on CC_GCC_SHOW_LINARO select CC_GCC_4_8 +config CC_V_4_8_3 + bool + prompt "4.8.3" + select CC_GCC_4_8 + config CC_V_4_8_2 bool prompt "4.8.2" @@ -68,6 +73,11 @@ config CC_V_linaro_4_7 depends on CC_GCC_SHOW_LINARO select CC_GCC_4_7 +config CC_V_4_7_4 + bool + prompt "4.7.4" + select CC_GCC_4_7 + config CC_V_4_7_3 bool prompt "4.7.3" @@ -473,10 +483,12 @@ config CC_VERSION # CT_INSERT_VERSION_STRING_BELOW default "4.9.0" if CC_V_4_9_0 default "linaro-4.8-2014.01" if CC_V_linaro_4_8 + default "4.8.3" if CC_V_4_8_3 default "4.8.2" if CC_V_4_8_2 default "4.8.1" if CC_V_4_8_1 default "4.8.0" if CC_V_4_8_0 default "linaro-4.7-2014.01" if CC_V_linaro_4_7 + default "4.7.4" if CC_V_4_7_4 default "4.7.3" if CC_V_4_7_3 default "4.7.2" if CC_V_4_7_2 default "4.7.1" if CC_V_4_7_1 |