aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Schwarz <zeranoe@gmail.com>2018-12-02 15:39:53 -0500
committerKyle Schwarz <zeranoe@gmail.com>2018-12-02 15:39:53 -0500
commit7175faa971a39f06f06e9f428bff1db8fbf50153 (patch)
treecc7c6fec6d32330e5363155412b2176ca1b9cecf
parente99b3280f3fbc36dfe1af3de24cd6a81240b541e (diff)
Change MinGW-w64 branch to 6
-rw-r--r--README.md2
-rwxr-xr-xmingw-w64-build4
2 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 0e10a87..c5988e0 100644
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@
[MinGW-w64](https://mingw-w64.org) cross compiler build script for i686 (Win32) and x86_64 (Win64).
## Package
-* [MinGW-w64](https://mingw-w64.org) 5git
+* [MinGW-w64](https://mingw-w64.org) 6git
* [Binutils](https://www.gnu.org/software/binutils/) 2.31git
* [GCC](https://gcc.gnu.org/) 8svn
* [GMP](https://gmplib.org/) 6.1.2
diff --git a/mingw-w64-build b/mingw-w64-build
index 80da7d0..e0ce0f4 100755
--- a/mingw-w64-build
+++ b/mingw-w64-build
@@ -17,7 +17,7 @@
#
v_script="4.0.1"
-v_mingww64="5git"
+v_mingww64="6git"
v_binutils="2.31git"
v_gcc="8svn"
v_gmp="6.1.2"
@@ -83,7 +83,7 @@ download_sources()
cd "$src" || error_exit
echo "downloading mingw-w64" >&3
- git clone --depth 1 -b v5.x git://git.code.sf.net/p/mingw-w64/mingw-w64 mingw-w64-$v_mingww64 || error_exit
+ git clone --depth 1 -b v6.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_31-branch --single-branch git://sourceware.org/git/binutils-gdb.git binutils-$v_binutils || error_exit