diff options
author | Kyle Schwarz <zeranoe@gmail.com> | 2018-08-10 03:19:29 -0400 |
---|---|---|
committer | Kyle Schwarz <zeranoe@gmail.com> | 2018-08-10 03:19:29 -0400 |
commit | 906260789a5c83195c126afa99de573affd26913 (patch) | |
tree | dd97a304fba6855884ac3bb37d769de0038930b0 | |
parent | fdf37352661df41bbaad2335086ef148cb656fdb (diff) |
Update to GCC 8svn
-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 74d2c1b..d2c1aa5 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=( "http://ftp.gnu.org/gnu/gmp/gmp-$v_gmp.tar.xz" |