diff options
author | John Crispin <blogic@openwrt.org> | 2015-12-23 19:26:11 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2015-12-23 19:26:11 +0000 |
commit | 0ef1b86e97a08c9cbb5b0f4ea8d8a4ee91eb27b2 (patch) | |
tree | 85c81274c474c5fd6a8148262240dafcc518cc55 /package/devel | |
parent | b7c1377d2c4992d4ba6393583f985442b7e46a45 (diff) | |
download | master-187ad058-0ef1b86e97a08c9cbb5b0f4ea8d8a4ee91eb27b2.tar.gz master-187ad058-0ef1b86e97a08c9cbb5b0f4ea8d8a4ee91eb27b2.tar.bz2 master-187ad058-0ef1b86e97a08c9cbb5b0f4ea8d8a4ee91eb27b2.zip |
binutils: upgrade to version 2.25
Fixes build:
config/tc-i386.c: In function 'build_modrm_byte':
config/tc-i386.c:6143:31: error: logical not is only applied to the left hand side of comparison [-Werror=logical-not-parentheses]
&& !op.bitfield.reg64 != 1
Contains this fix:
https://sourceware.org/ml/binutils/2014-09/msg00095.html
Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@48003 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/devel')
-rw-r--r-- | package/devel/binutils/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/package/devel/binutils/Makefile b/package/devel/binutils/Makefile index f8549ad643..8e25a1e7ff 100644 --- a/package/devel/binutils/Makefile +++ b/package/devel/binutils/Makefile @@ -8,13 +8,13 @@ include $(TOPDIR)/rules.mk PKG_NAME:=binutils -PKG_VERSION:=2.24 -PKG_RELEASE:=3 +PKG_VERSION:=2.25 +PKG_RELEASE:=1 PKG_SOURCE_URL:=@GNU/binutils PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 PKG_VERSION:=$(PKG_VERSION) -PKG_MD5SUM:=e0f71a7b2ddab0f8612336ac81d9636b +PKG_MD5SUM:=d9f3303f802a5b6b0bb73a335ab89d66 PKG_FIXUP:=autoreconf PKG_LIBTOOL_PATHS:=. gas bfd opcodes gprof binutils ld libiberty gold intl |