aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Schwarz <zeranoe@gmail.com>2018-07-22 19:03:54 -0400
committerKyle Schwarz <zeranoe@gmail.com>2018-07-22 19:03:54 -0400
commitfdf37352661df41bbaad2335086ef148cb656fdb (patch)
tree3fe27568b2eacbb2af9ac1f63d7bbc1a5661e7bf
parenta9a630b0165ab0c0bda4684fb756841b782c7a38 (diff)
Update Binutils to 2.31git
-rw-r--r--README.md2
-rwxr-xr-xmingw-w64-build4
2 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 74836ac..f7bb86c 100644
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@
[MinGW-w64](https://mingw-w64.org) cross compiler build script for i686 (Win32) and x86_64 (Win64).
## Package
-* [Binutils](https://www.gnu.org/software/binutils/) 2.30git
+* [Binutils](https://www.gnu.org/software/binutils/) 2.31git
* [GCC](https://gcc.gnu.org/) 7svn
* [GMP](https://gmplib.org/) 6.1.2
* [MPFR](http://www.mpfr.org/) 4.0.1
diff --git a/mingw-w64-build b/mingw-w64-build
index 93ec633..74d2c1b 100755
--- a/mingw-w64-build
+++ b/mingw-w64-build
@@ -17,7 +17,7 @@
#
v_script="4.0.1"
-v_binutils="2.30git"
+v_binutils="2.31git"
v_gcc="7svn"
v_gmp="6.1.2"
v_mpfr="4.0.1"
@@ -85,7 +85,7 @@ download_sources()
git clone --depth 1 git://git.code.sf.net/p/mingw-w64/mingw-w64 "mingw-w64-git" || error_exit
echo "downloading binutils" >&3
- git clone --depth 1 -b binutils-2_30-branch --single-branch git://sourceware.org/git/binutils-gdb.git binutils-$v_binutils || error_exit
+ git clone --depth 1 -b binutils-2_31-branch --single-branch git://sourceware.org/git/binutils-gdb.git binutils-$v_binutils || error_exit
echo "downloading gcc" >&3
svn co svn://gcc.gnu.org/svn/gcc/branches/gcc-7-branch gcc-$v_gcc || error_exit