diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2009-01-16 14:13:50 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2009-01-16 14:13:50 +0000 |
commit | c816f0b9eaeb9a29f012cf3744fc795963840b02 (patch) | |
tree | c69f6fb97e3446ff7654ac7e8c2667eb4f47c7c2 /toolchain | |
parent | 6e0c86fff8920643d1fe30c508d1891d14491273 (diff) | |
download | buildroot-novena-c816f0b9eaeb9a29f012cf3744fc795963840b02.tar.gz buildroot-novena-c816f0b9eaeb9a29f012cf3744fc795963840b02.zip |
toolchain/gcc: mark old versions as deprecated
Diffstat (limited to 'toolchain')
-rw-r--r-- | toolchain/gcc/Config.in | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/toolchain/gcc/Config.in b/toolchain/gcc/Config.in index 3f865ebb8..8783bae66 100644 --- a/toolchain/gcc/Config.in +++ b/toolchain/gcc/Config.in @@ -22,29 +22,35 @@ choice config BR2_GCC_VERSION_4_1_2 depends on !BR2_nios2 depends on BR2_EXT_GCC_VERSION_4_1_2 + depends on BR2_DEPRECATED bool "gcc 4.1.2" config BR2_GCC_VERSION_4_2_1 depends on !BR2_nios2 depends on BR2_EXT_GCC_VERSION_4_2_1 + depends on BR2_DEPRECATED bool "gcc 4.2.1" config BR2_GCC_VERSION_4_2_2 depends on BR2_avr32 depends on BR2_EXT_GCC_VERSION_4_2_2 + depends on BR2_DEPRECATED bool "gcc 4.2.2" config BR2_GCC_VERSION_4_2_3 depends on !BR2_nios2 - depends on BR2_EXT_GCC_VERSION_4_2_3 || BR2_DEPRECATED + depends on BR2_EXT_GCC_VERSION_4_2_3 + depends on BR2_DEPRECATED || BR2_avr32 bool "gcc 4.2.3" config BR2_GCC_VERSION_4_2_4 depends on !BR2_avr32 && !BR2_nios2 + depends on BR2_RECENT || BR2_DEPRECATED bool "gcc 4.2.4" config BR2_GCC_VERSION_4_3_1 depends on !BR2_avr32 && !BR2_nios2 + depends on BR2_RECENT || BR2_DEPRECATED bool "gcc 4.3.1" config BR2_GCC_VERSION_4_3_2 |