diff options
author | Kyle Schwarz <zeranoe@gmail.com> | 2018-08-12 20:54:52 -0400 |
---|---|---|
committer | Kyle Schwarz <zeranoe@gmail.com> | 2018-08-12 20:54:52 -0400 |
commit | 9dc898aad17841d1839f30cd00b4986a0e919379 (patch) | |
tree | 8402f15450c97e0fdc3dd90b94b23ac82e7e1e0b | |
parent | ca00ca42c69247cc25e88a6687bfb7ef98cfe420 (diff) |
Revert "Revert "Update to GCC 8svn""
This reverts commit 22c7717c4bd9ed46c21050ba83c1105a3493626e.
The bug ended up being with MinGW-w64 git HEAD, not GCC.
-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 * [Binutils](https://www.gnu.org/software/binutils/) 2.31git -* [GCC](https://gcc.gnu.org/) 7svn +* [GCC](https://gcc.gnu.org/) 8svn * [GMP](https://gmplib.org/) 6.1.2 * [MPFR](http://www.mpfr.org/) 4.0.1 * [MPC](http://www.multiprecision.org/mpc/) 1.1.0 diff --git a/mingw-w64-build b/mingw-w64-build index c15307e..652e171 100755 --- a/mingw-w64-build +++ b/mingw-w64-build @@ -18,7 +18,7 @@ v_script="4.0.1" v_binutils="2.31git" -v_gcc="7svn" +v_gcc="8svn" v_gmp="6.1.2" v_mpfr="4.0.1" v_mpc="1.1.0" @@ -88,7 +88,7 @@ download_sources() 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 + svn co svn://gcc.gnu.org/svn/gcc/branches/gcc-8-branch gcc-$v_gcc || error_exit local urls=( "https://ftp.gnu.org/gnu/gmp/gmp-$v_gmp.tar.xz" |