diff options
author | Bryan Hundven <bryanhundven@gmail.com> | 2016-02-04 22:55:08 -0800 |
---|---|---|
committer | Bryan Hundven <bryanhundven@gmail.com> | 2016-02-04 22:55:08 -0800 |
commit | 2241a42415767f55eb5ab0f62b7dfa722bab3c11 (patch) | |
tree | 111ec5179cc628d81d4ac9a2651fef7893c1e3da /config/binutils | |
parent | 6702ff8debf1bc1357cb16cddedb4a2087c80d22 (diff) | |
download | crosstool-ng-2241a42415767f55eb5ab0f62b7dfa722bab3c11.tar.gz crosstool-ng-2241a42415767f55eb5ab0f62b7dfa722bab3c11.tar.bz2 crosstool-ng-2241a42415767f55eb5ab0f62b7dfa722bab3c11.zip |
binutils: Add binutils-2.26
Signed-off-by: Bryan Hundven <bryanhundven@gmail.com>
Diffstat (limited to 'config/binutils')
-rw-r--r-- | config/binutils/binutils.in | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/config/binutils/binutils.in b/config/binutils/binutils.in index d5d9f546..91b5e9f3 100644 --- a/config/binutils/binutils.in +++ b/config/binutils/binutils.in @@ -6,7 +6,7 @@ config BINUTILS_CUSTOM bool prompt "Custom binutils" depends on EXPERIMENTAL - select BINUTILS_2_25_1_or_later + select BINUTILS_2_26_or_later help The choosen binutils version shall be not downloaded. Instead use a custom location to get the source. @@ -60,6 +60,11 @@ choice # Don't remove next line # CT_INSERT_VERSION_BELOW +config BINUTILS_V_2_26 + bool + prompt "2.26" + select BINUTILS_2_26_or_later + config BINUTILS_V_2_25_1 bool prompt "2.25.1" @@ -93,6 +98,7 @@ config BINUTILS_VERSION string # Don't remove next line # CT_INSERT_VERSION_STRING_BELOW + default "2.26" if BINUTILS_V_2_26 default "2.25.1" if BINUTILS_V_2_25_1 default "linaro-2.25.0-2015.01-2" if BINUTILS_LINARO_V_2_25 default "linaro-2.24.0-2014.11-2" if BINUTILS_LINARO_V_2_24 @@ -101,6 +107,10 @@ config BINUTILS_VERSION endif # ! BINUTILS_CUSTOM +config BINUTILS_2_26_or_later + bool + select BINUTILS_2_25_1_or_later + config BINUTILS_2_25_1_or_later bool select BINUTILS_2_25_or_later |