diff options
author | Kyle Schwarz <zeranoe@gmail.com> | 2018-07-10 13:23:28 -0400 |
---|---|---|
committer | Kyle Schwarz <zeranoe@gmail.com> | 2018-07-10 13:23:28 -0400 |
commit | 7baa955504a6b8c56b348e5e7551fea1d329a2cc (patch) | |
tree | 0df788cb8705564ecf07756ad5fd125780d46e0b | |
parent | 2cc015e6391c2f3648017c84a3e6a53e4eccc601 (diff) |
Switch to the Binutils 2.30 SVN branch and GCC 7 Git branch
Additional packages are required for building Binutils from SVN.
MacOS requires --disable-werror for Binutils due to a commit not yet in the 2.30 branch.
-rw-r--r-- | README.md | 4 | ||||
-rwxr-xr-x | mingw-w64-build | 18 |
2 files changed, 15 insertions, 7 deletions
@@ -2,8 +2,8 @@ [MinGW-w64](https://mingw-w64.org) cross compiler build script for i686 (Win32) and x86_64 (Win64). ## Package -* [Binutils](https://www.gnu.org/software/binutils/) 2.29.1 -* [GCC](https://gcc.gnu.org/) 7.3.0 +* [Binutils](https://www.gnu.org/software/binutils/) 2.30git +* [GCC](https://gcc.gnu.org/) 7svn * [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 784ea4f..93ec633 100755 --- a/mingw-w64-build +++ b/mingw-w64-build @@ -17,8 +17,8 @@ # v_script="4.0.1" -v_binutils="2.29.1" -v_gcc="7.3.0" +v_binutils="2.30git" +v_gcc="7svn" v_gmp="6.1.2" v_mpfr="4.0.1" v_mpc="1.1.0" @@ -84,9 +84,13 @@ download_sources() echo "downloading mingw-w64-git" >&3 git clone --depth 1 git://git.code.sf.net/p/mingw-w64/mingw-w64 "mingw-w64-git" || error_exit + echo "downloading binutils" >&3 + git clone --depth 1 -b binutils-2_30-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 + 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.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" @@ -135,7 +139,7 @@ build_toolchain() echo "configuring binutils" >&3 "../../src/binutils-$v_binutils/configure" --prefix="$prefix" --disable-shared \ --enable-static --with-sysroot="$prefix" --target="$host" \ - --disable-multilib --disable-nls || error_exit + --disable-multilib --disable-nls --enable-lto --disable-werror || error_exit echo "building binutils" >&3 make -j $cpus || error_exit echo "installing binutils" >&3 @@ -227,6 +231,10 @@ progs=( "g++" "tr" "tar" + "svn" + "flex" + "bison" + "makeinfo" ) missing_progs="" for prog in "${progs[@]}"; do |