diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2010-06-15 10:24:44 -0300 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2010-06-15 22:54:44 +0200 |
commit | 947a9b8586a568a5b400d842bbd1a0762b0fa397 (patch) | |
tree | 8f0c495de1b9305741eb602a72292a106408d3c0 /toolchain/gcc/Config.in | |
parent | 36391de0dbf8ed623e9897941a286fa19cb17b05 (diff) |
toolchain: bump gcc 4.3.x series to 4.3.5
Closes #2065
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'toolchain/gcc/Config.in')
-rw-r--r-- | toolchain/gcc/Config.in | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/toolchain/gcc/Config.in b/toolchain/gcc/Config.in index c25a152ab..7ca5ae247 100644 --- a/toolchain/gcc/Config.in +++ b/toolchain/gcc/Config.in @@ -4,7 +4,7 @@ comment "GCC Options" choice prompt "GCC compiler Version" - default BR2_GCC_VERSION_4_3_4 if !BR2_avr32 + default BR2_GCC_VERSION_4_3_5 if !BR2_avr32 default BR2_GCC_VERSION_4_2_3 if BR2_avr32 help Select the version of gcc you wish to use. @@ -50,6 +50,10 @@ choice depends on !BR2_avr32 bool "gcc 4.3.4" + config BR2_GCC_VERSION_4_3_5 + depends on !BR2_avr32 + bool "gcc 4.3.5" + config BR2_GCC_VERSION_4_4_X depends on !BR2_avr32 bool "gcc 4.4.x" @@ -86,6 +90,7 @@ config BR2_GCC_VERSION default "4.3.2" if BR2_GCC_VERSION_4_3_2 default "4.3.3" if BR2_GCC_VERSION_4_3_3 default "4.3.4" if BR2_GCC_VERSION_4_3_4 + default "4.3.5" if BR2_GCC_VERSION_4_3_5 default "4.4.4" if BR2_GCC_VERSION_4_4_X default $BR2_GCC_SNAP_DATE if BR2_GCC_VERSION_SNAP |