diff options
author | Romain Naour <romain.naour@gmail.com> | 2018-01-29 23:39:40 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2018-01-30 09:46:59 +0100 |
commit | 37e1e6cf6d133afeed1be98c5d5542cd00664efb (patch) | |
tree | c08c01f707d3ba9191ec7e6add0f08b1e706dfd1 | |
parent | 6ee21a39ac81e90184786ebe272b9df40caec906 (diff) | |
download | buildroot-37e1e6cf6d133afeed1be98c5d5542cd00664efb.tar.gz buildroot-37e1e6cf6d133afeed1be98c5d5542cd00664efb.zip |
package/binutils: switch to use 2.29.x as the default version
Now that binutils 2.30 has been released, it is time to move to
binutils 2.29.x as the default binutils version, instead of 2.28.1.
Signed-off-by: Romain Naour <romain.naour@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/binutils/Config.in.host | 2 | ||||
-rw-r--r-- | package/binutils/binutils.mk | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/package/binutils/Config.in.host b/package/binutils/Config.in.host index 1ab3257f46..fd8a7fa981 100644 --- a/package/binutils/Config.in.host +++ b/package/binutils/Config.in.host @@ -2,7 +2,7 @@ comment "Binutils Options" choice prompt "Binutils Version" - default BR2_BINUTILS_VERSION_2_28_X if !BR2_arc + default BR2_BINUTILS_VERSION_2_29_X if !BR2_arc default BR2_BINUTILS_VERSION_ARC if BR2_arc help Select the version of binutils you wish to use. diff --git a/package/binutils/binutils.mk b/package/binutils/binutils.mk index e12fb86c93..0f7ff0048a 100644 --- a/package/binutils/binutils.mk +++ b/package/binutils/binutils.mk @@ -11,7 +11,7 @@ ifeq ($(BINUTILS_VERSION),) ifeq ($(BR2_arc),y) BINUTILS_VERSION = arc-2017.09-release else -BINUTILS_VERSION = 2.28.1 +BINUTILS_VERSION = 2.29.1 endif endif # BINUTILS_VERSION |