diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-10-28 23:19:17 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-10-29 22:12:51 +0100 |
commit | 21a60216e925bc16a4965b0fb0f8801208f02547 (patch) | |
tree | abe2a9777b7401d77ce50eb42748700e115bb958 | |
parent | beaf1c1887837b3b4a11e681ad41cef71b2bcdf7 (diff) | |
download | buildroot-21a60216e925bc16a4965b0fb0f8801208f02547.tar.gz buildroot-21a60216e925bc16a4965b0fb0f8801208f02547.zip |
binutils: bump the default target version of binutils
When binutils for the host is not built (which is the case when an
external toolchain is used), the version of binutils used is 2.21,
which is quite old. Since we have bumped to 2.22 as the default
version for the host binutils, let's do the same for the target
binutils.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
-rw-r--r-- | package/binutils/binutils.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/binutils/binutils.mk b/package/binutils/binutils.mk index ab9f167d24..b8dab5d532 100644 --- a/package/binutils/binutils.mk +++ b/package/binutils/binutils.mk @@ -12,7 +12,7 @@ ifeq ($(BR2_avr32),y) # avr32 uses a special version BINUTILS_VERSION = 2.18-avr32-1.0.1 else -BINUTILS_VERSION = 2.21 +BINUTILS_VERSION = 2.22 endif endif |