diff options
author | Kyle Schwarz <zeranoe@gmail.com> | 2020-03-30 23:14:01 -0400 |
---|---|---|
committer | Kyle Schwarz <zeranoe@gmail.com> | 2020-03-30 23:14:01 -0400 |
commit | 9863ab1c73569b57b4be6319fcd281c424816af1 (patch) | |
tree | deff137cbbd437f27e2c26ce50dbcbceb43807c5 | |
parent | 6c1e50dfd12ed2af750bb2c1908357b90aa49870 (diff) |
Update to binutils 2.34git
-rw-r--r-- | README.md | 2 | ||||
-rwxr-xr-x | mingw-w64-build | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -3,7 +3,7 @@ ## Package * [MinGW-w64](https://mingw-w64.org) 7git -* [Binutils](https://www.gnu.org/software/binutils/) 2.33git +* [Binutils](https://www.gnu.org/software/binutils/) 2.34git * [GCC](https://gcc.gnu.org/) 9svn * [GMP](https://gmplib.org/) 6.1.2 * [MPFR](http://www.mpfr.org/) 4.0.2 diff --git a/mingw-w64-build b/mingw-w64-build index 5c2aae2..1703529 100755 --- a/mingw-w64-build +++ b/mingw-w64-build @@ -18,7 +18,7 @@ v_script="4git" v_mingww64="7git" -v_binutils="2.33git" +v_binutils="2.34git" v_gcc="9git" v_gmp="6.1.2" v_mpfr="4.0.2" @@ -86,7 +86,7 @@ download_sources() git clone --depth 1 -b v7.x git://git.code.sf.net/p/mingw-w64/mingw-w64 mingw-w64-$v_mingww64 || error_exit echo "downloading binutils" >&3 - git clone --depth 1 -b binutils-2_33-branch git://sourceware.org/git/binutils-gdb.git binutils-$v_binutils || error_exit + git clone --depth 1 -b binutils-2_34-branch git://sourceware.org/git/binutils-gdb.git binutils-$v_binutils || error_exit echo "downloading gcc" >&3 git clone --depth 1 -b releases/gcc-9 git://gcc.gnu.org/git/gcc.git gcc-$v_gcc || error_exit |