aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Schwarz <zeranoe@gmail.com>2018-01-24 01:22:39 -0500
committerKyle Schwarz <zeranoe@gmail.com>2018-01-24 01:22:39 -0500
commite123dc9e597c776c3f4910409b53a23c1137e1c8 (patch)
tree5d7f5776b32d831872512b89166655ae53244b65
parent2ea059af4ac36a8d944e2fd0980ab11af8245442 (diff)
Update package versions
-rw-r--r--README.md10
-rwxr-xr-xmingw-w64-build10
2 files changed, 10 insertions, 10 deletions
diff --git a/README.md b/README.md
index 73e8b57..352d065 100644
--- a/README.md
+++ b/README.md
@@ -2,10 +2,10 @@
MinGW-w64 cross compiler build script for i686 (Win32) and x86_64 (Win64).
## Package
-* Binutils 2.28
-* GCC 7.1.0
+* Binutils 2.29.1
+* GCC 7.2.0
* GMP 6.1.2
-* MPFR 3.1.5
+* MPFR 3.1.6
* MPC 1.0.3
* isl 0.18
@@ -13,8 +13,8 @@ MinGW-w64 cross compiler build script for i686 (Win32) and x86_64 (Win64).
mingw-w64-build has been tested on the following platforms:
* Ubuntu 17.04 & 16.04
* Cygwin
-* macOS 10.12 (requires Homebrew)
-* Debian 8.8
+* macOS 10.13 (requires Homebrew)
+* Debian 9
## License
mingw-w64-build is licensed under the GNU GPL 3.0 or later. A copy of the license can be found in the LICENSE file.
diff --git a/mingw-w64-build b/mingw-w64-build
index 7a0e8b0..77571e8 100755
--- a/mingw-w64-build
+++ b/mingw-w64-build
@@ -16,11 +16,11 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
-v_script="4.0.0"
-v_binutils="2.28"
-v_gcc="7.1.0"
+v_script="4.0.1"
+v_binutils="2.29.1"
+v_gcc="7.2.0"
v_gmp="6.1.2"
-v_mpfr="3.1.5"
+v_mpfr="3.1.6"
v_mpc="1.0.3"
v_isl="0.18"
@@ -86,7 +86,7 @@ download_sources()
local urls=(
"http://ftp.gnu.org/gnu/binutils/binutils-$v_binutils.tar.bz2"
- "http://ftp.gnu.org/gnu/gcc/gcc-$v_gcc/gcc-$v_gcc.tar.bz2"
+ "http://ftp.gnu.org/gnu/gcc/gcc-$v_gcc/gcc-$v_gcc.tar.xz"
"http://ftp.gnu.org/gnu/gmp/gmp-$v_gmp.tar.xz"
"http://ftp.gnu.org/gnu/mpfr/mpfr-$v_mpfr.tar.xz"
"http://ftp.gnu.org/gnu/mpc/mpc-$v_mpc.tar.gz"