diff options
author | Jasmin Jessich <jasmin@anw.at> | 2015-08-24 00:12:43 +0200 |
---|---|---|
committer | Jasmin Jessich <jasmin@anw.at> | 2015-09-01 21:11:34 +0200 |
commit | ba4cef66514fff84afe8a04b866eba0172193ae4 (patch) | |
tree | bef20e715f1193fa5572fe1f01ee7ba83e67487a /config/binutils | |
parent | 094b5be8fd9b8a99636b802430eb4ae2edc37710 (diff) | |
download | crosstool-ng-ba4cef66514fff84afe8a04b866eba0172193ae4.tar.gz crosstool-ng-ba4cef66514fff84afe8a04b866eba0172193ae4.tar.bz2 crosstool-ng-ba4cef66514fff84afe8a04b866eba0172193ae4.zip |
Adding patches for binutils version 2.25.1 as copy of 2.25.
Support binutils 2.25.1 in configuration.
Note: The patches do apply, but I didn't check the resulting tools.
Signed-off-by: Jasmin Jessich <jasmin@anw.at>
Diffstat (limited to 'config/binutils')
-rw-r--r-- | config/binutils/binutils.in | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/config/binutils/binutils.in b/config/binutils/binutils.in index 5ef69b5d..821e6069 100644 --- a/config/binutils/binutils.in +++ b/config/binutils/binutils.in @@ -25,6 +25,11 @@ choice # Don't remove next line # CT_INSERT_VERSION_BELOW +config BINUTILS_V_2_25_1 + bool + prompt "2.25.1" + select BINUTILS_2_25_1_or_later + config BINUTILS_LINARO_V_2_25 bool prompt "linaro-2.25.0-2015.01-2" @@ -111,6 +116,7 @@ config BINUTILS_VERSION string # Don't remove next line # CT_INSERT_VERSION_STRING_BELOW + 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 "2.25" if BINUTILS_V_2_25 default "linaro-2.24.0-2014.11-2" if BINUTILS_LINARO_V_2_24 @@ -125,6 +131,10 @@ config BINUTILS_VERSION default "2.18a" if BINUTILS_V_2_18a default "custom" if BINUTILS_CUSTOM +config BINUTILS_2_25_1_or_later + bool + select BINUTILS_2_25_or_later + config BINUTILS_2_25_or_later bool select BINUTILS_2_24_or_later |