diff options
author | Kyle Schwarz <zeranoe@gmail.com> | 2020-07-26 19:14:36 -0400 |
---|---|---|
committer | Kyle Schwarz <zeranoe@gmail.com> | 2020-07-26 19:14:36 -0400 |
commit | 1a16e4f05b9cb8708e478aff4f1ab3afc27cde7a (patch) | |
tree | 6b82dcc3e83a00a6c53b365c752cfdbb52f18bf7 | |
parent | aa8499b8492b4e2282b03250d617d5b2bc74314d (diff) |
Update packages
-rw-r--r-- | README.md | 6 | ||||
-rwxr-xr-x | mingw-w64-build | 10 |
2 files changed, 8 insertions, 8 deletions
@@ -3,10 +3,10 @@ ## Package * [MinGW-w64](https://mingw-w64.org) 7git -* [Binutils](https://www.gnu.org/software/binutils/) 2.34git -* [GCC](https://gcc.gnu.org/) 9git +* [Binutils](https://www.gnu.org/software/binutils/) 2.35git +* [GCC](https://gcc.gnu.org/) 10git * [GMP](https://gmplib.org/) 6.2.0 -* [MPFR](http://www.mpfr.org/) 4.0.2 +* [MPFR](http://www.mpfr.org/) 4.1.0 * [MPC](http://www.multiprecision.org/mpc/) 1.1.0 * [isl](http://isl.gforge.inria.fr/) 0.21 diff --git a/mingw-w64-build b/mingw-w64-build index ba43025..b1ded35 100755 --- a/mingw-w64-build +++ b/mingw-w64-build @@ -18,10 +18,10 @@ v_script="4git" v_mingww64="7git" -v_binutils="2.34git" -v_gcc="9git" +v_binutils="2.35git" +v_gcc="10git" v_gmp="6.2.0" -v_mpfr="4.0.2" +v_mpfr="4.1.0" v_mpc="1.1.0" v_isl="0.21" @@ -87,10 +87,10 @@ download_sources() git clone --depth 1 -b v7.x https://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_34-branch git://sourceware.org/git/binutils-gdb.git binutils-$v_binutils || error_exit + git clone --depth 1 -b binutils-2_35-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 + git clone --depth 1 -b releases/gcc-10 git://gcc.gnu.org/git/gcc.git gcc-$v_gcc || error_exit local urls=( "https://ftp.gnu.org/gnu/gmp/gmp-$v_gmp.tar.xz" |