diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2008-12-05 15:28:01 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2008-12-05 15:28:01 +0000 |
commit | 01bd158570e3a73d15a6cff18da140d23b7324e4 (patch) | |
tree | 271675fb221f9433c5ab46d8e622352b7b07af9d /toolchain/binutils/Config.in | |
parent | 5469008f89476f5e69367855d2bae26b58d37a7c (diff) | |
download | buildroot-novena-01bd158570e3a73d15a6cff18da140d23b7324e4.tar.gz buildroot-novena-01bd158570e3a73d15a6cff18da140d23b7324e4.zip |
toolchain/binutils: add 2.19
Based on 9cd8638d / b86af9a1 in Bernhard's tree.
Diffstat (limited to 'toolchain/binutils/Config.in')
-rw-r--r-- | toolchain/binutils/Config.in | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/toolchain/binutils/Config.in b/toolchain/binutils/Config.in index 60a01c184..6cbbbdeff 100644 --- a/toolchain/binutils/Config.in +++ b/toolchain/binutils/Config.in @@ -4,7 +4,7 @@ comment "Binutils Options" choice prompt "Binutils Version" - default BR2_BINUTILS_VERSION_2_18 + default BR2_BINUTILS_VERSION_2_19 help Select the version of binutils you wish to use. @@ -45,7 +45,12 @@ choice config BR2_BINUTILS_VERSION_2_18_50_0_9 depends on !BR2_avr32 && !BR2_nios2 + depends on BR2_DEPRECATED bool "binutils 2.18.50.0.9" + + config BR2_BINUTILS_VERSION_2_19 + depends on !BR2_avr32 && !BR2_nios2 + bool "binutils 2.19" endchoice config BR2_BINUTILS_VERSION @@ -59,6 +64,7 @@ config BR2_BINUTILS_VERSION default "2.18.50.0.6" if BR2_BINUTILS_VERSION_2_18_50_0_6 default "2.18.50.0.8" if BR2_BINUTILS_VERSION_2_18_50_0_8 default "2.18.50.0.9" if BR2_BINUTILS_VERSION_2_18_50_0_9 + default "2.19" if BR2_BINUTILS_VERSION_2_19 config BR2_EXTRA_BINUTILS_CONFIG_OPTIONS string "Additional binutils options" |