diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2010-06-15 22:58:17 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2010-06-15 22:58:17 +0200 |
commit | 144e4ed085d67b46cb0ce9c1c45794bce3c8cb99 (patch) | |
tree | d018770f8cfe66159a95c3bf59460c9206ce0aba | |
parent | 947a9b8586a568a5b400d842bbd1a0762b0fa397 (diff) | |
download | buildroot-novena-144e4ed085d67b46cb0ce9c1c45794bce3c8cb99.tar.gz buildroot-novena-144e4ed085d67b46cb0ce9c1c45794bce3c8cb99.zip |
toolchain/gcc: Use 4.3.x like for 4.4, get rid of older 4.3.x versions
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r-- | CHANGES | 2 | ||||
-rw-r--r-- | toolchain/gcc/Config.in | 24 |
2 files changed, 6 insertions, 20 deletions
@@ -2,6 +2,8 @@ Fixes all over the tree and new features. + Toolchain: GCC 4.3.5, older 4.3.x versions removed. + Bootloaders: Various cleanups, moved to boot/, added Barebox, removed yaboot. Support building u-boot from custom tarball. diff --git a/toolchain/gcc/Config.in b/toolchain/gcc/Config.in index 7ca5ae247..9140a8de8 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_5 if !BR2_avr32 + default BR2_GCC_VERSION_4_3_X if !BR2_avr32 default BR2_GCC_VERSION_4_2_3 if BR2_avr32 help Select the version of gcc you wish to use. @@ -37,22 +37,9 @@ choice depends on !BR2_avr32 bool "gcc 4.2.4" - config BR2_GCC_VERSION_4_3_2 + config BR2_GCC_VERSION_4_3_X depends on !BR2_avr32 - depends on BR2_DEPRECATED - bool "gcc 4.3.2" - - config BR2_GCC_VERSION_4_3_3 - depends on !BR2_avr32 - bool "gcc 4.3.3" - - config BR2_GCC_VERSION_4_3_4 - 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" + bool "gcc 4.3.x" config BR2_GCC_VERSION_4_4_X depends on !BR2_avr32 @@ -87,10 +74,7 @@ config BR2_GCC_VERSION default "4.2.2-avr32-2.1.5" if BR2_GCC_VERSION_4_2_2_AVR32_2_1_5 default "4.2.3" if BR2_GCC_VERSION_4_2_3 default "4.2.4" if BR2_GCC_VERSION_4_2_4 - 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.3.5" if BR2_GCC_VERSION_4_3_X default "4.4.4" if BR2_GCC_VERSION_4_4_X default $BR2_GCC_SNAP_DATE if BR2_GCC_VERSION_SNAP |