diff options
-rw-r--r-- | README.md | 3 | ||||
-rwxr-xr-x | mingw-w64-build | 102 |
2 files changed, 90 insertions, 15 deletions
@@ -1,3 +1,6 @@ +# mingw-w64-build-ng +[Zeranoe](https://github.com/Zeranoe/mingw-w64-build)s build script with some extensioons rejected by the upstream. + # mingw-w64-build mingw-w64-build is a Bash script to build a [MinGW-w64](https://mingw-w64.org) cross compiler for i686 (Win32) and x86_64 (Win64). It will build a fully static diff --git a/mingw-w64-build b/mingw-w64-build index b00c89f..52f37d5 100755 --- a/mingw-w64-build +++ b/mingw-w64-build @@ -16,12 +16,23 @@ # along with this program. If not, see <http://www.gnu.org/licenses/>. # -ROOT_PATH="$HOME/.zeranoe/mingw-w64" +ROOT_PATH="$HOME/.mingw-w64-build-ng" MINGW_W64_BRANCH="v9.x" BINUTILS_BRANCH="binutils-2_37-branch" GCC_BRANCH="releases/gcc-11" +USE_TARBALL_RELEASES=1 + +MINGW_W64_TARBALL_VERSION="v9.0.0" +BINUTILS_TARBALL_VERSION="2.37" +GCC_TARBALL_VERSION="11.2.0" + +MINGW_W64_TARBALL_SHA512="e5726eff24326dd8997c21e0ea3069fc6b8e2b29ba40648f7c0c8b52980d02b96b13d8c00dfa91b16fcd311d1fb83ec879cf2ce57249b7f5069e4af7b93b872a" +BINUTILS_TARBALL_SHA512="344968dd0b49eb54e3c67f9e36c7164d78a24bd4274b7656f71de9cf3fe5cff8278c43a35655f74d85ee76b469639fdcb39d9764b489450887b7529df0a3a730" +GCC_TARBALL_SHA512="155535da34c74467e5d041fc6a79f5f102c30a7808b929a880dc33baae48e706089c8db20b2e30d49f4857c4a65f4e8e8f5a9d121d53facfeb5758d316c76c4d" +CONFIG_GUESS_EXPECTED_SHA512="8d5ab910acd2a795045c36703b5fc4cd6db0a5838ff980d0b62bd108e2cd8213519c6f2a754c49249346d78d4c9d2c8db4346895e02a9b4f5d7f42553c1a706c" + ENABLE_THREADS="--enable-threads=posix" JOB_COUNT=$(($(getconf _NPROCESSORS_ONLN) + 2)) @@ -44,9 +55,10 @@ Options: --keep-artifacts don't remove source and build files after a successful build --disable-threads disable pthreads and STL <thread> --cached-sources use existing sources instead of downloading new ones - --binutils-branch <branch> set Binutils branch (default: $BINUTILS_BRANCH) - --gcc-branch <branch> set GCC branch (default: $GCC_BRANCH) - --mingw-w64-branch <branch> set MinGW-w64 branch (default: $MINGW_W64_BRANCH) + --binutils-branch <branch> NOT RECOMMENDED - set Binutils branch (default: $BINUTILS_BRANCH) + --gcc-branch <branch> NOT RECOMMENDED - set GCC branch (default: $GCC_BRANCH) + --mingw-w64-branch <branch> NOT RECOMMENDED - set MinGW-w64 branch (default: $MINGW_W64_BRANCH) + --force-git NOT RECOMMENDED - force git clone (default: disabled) EOF } @@ -121,21 +133,68 @@ download_sources() create_dir "$SRC_PATH" change_dir "$SRC_PATH" - execute "downloading MinGW-w64 source" "" \ - git clone --depth 1 -b "$MINGW_W64_BRANCH" \ - https://git.code.sf.net/p/mingw-w64/mingw-w64 mingw-w64 + if [ ${USE_TARBALL_RELEASES} -eq 0 ]; then + execute "downloading MinGW-w64 source (GIT+HTTPS)" "" \ + git clone --depth 1 -b "$MINGW_W64_BRANCH" \ + "https://git.code.sf.net/p/mingw-w64/mingw-w64" mingw-w64 + else + execute "downloading MinGW-w64 source (TAR+HTTPS)" "" \ + curl -o mingw-w64.tar.gz \ + "https://codeload.github.com/mirror/mingw-w64/tar.gz/refs/tags/${MINGW_W64_TARBALL_VERSION}" + + MINGW_W64_sha512sum="$(sha512sum mingw-w64.tar.gz | cut -d ' ' -f 1)" + execute "verify MinGW-w64 SHA-512" \ + "Hash verification failed; new: ${MINGW_W64_sha512sum}" \ + test "${MINGW_W64_sha512sum}" = "${MINGW_W64_TARBALL_SHA512}" - execute "downloading Binutils source" "" \ - git clone --depth 1 -b "$BINUTILS_BRANCH" \ - https://sourceware.org/git/binutils-gdb.git binutils + execute "extract MinGW-w64 tarball" "" \ + tar -xzf mingw-w64.tar.gz --one-top-level=mingw-w64/ --strip-components=1 + fi + + if [ ${USE_TARBALL_RELEASES} -eq 0 ]; then + execute "downloading Binutils source (GIT+HTTPS)" "" \ + git clone --depth 1 -b "$BINUTILS_BRANCH" \ + "https://sourceware.org/git/binutils-gdb.git" binutils + else + execute "downloading Binutils source (TAR+HTTPS)" "" \ + curl -o binutils.tar.gz \ + "https://ftp.gnu.org/gnu/binutils/binutils-${BINUTILS_TARBALL_VERSION}.tar.gz" - execute "downloading GCC source" "" \ - git clone --depth 1 -b "$GCC_BRANCH" \ - https://gcc.gnu.org/git/gcc.git gcc + BINUTILS_sha512sum="$(sha512sum binutils.tar.gz | cut -d ' ' -f 1)" + execute "verify Binutils SHA-512" \ + "Hash verification failed; new: ${BINUTILS_sha512sum}" \ + test "${BINUTILS_sha512sum}" = "${BINUTILS_TARBALL_SHA512}" + + execute "extract Binutils tarball" "" \ + tar -xzf binutils.tar.gz --one-top-level=binutils/ --strip-components=1 + fi + + if [ ${USE_TARBALL_RELEASES} -eq 0 ]; then + execute "downloading GCC source (GIT+HTTPS)" "" \ + git clone --depth 1 -b "$GCC_BRANCH" \ + "https://gcc.gnu.org/git/gcc.git" gcc + else + execute "downloading GCC source (TAR+HTTPS)" "" \ + curl -o gcc.tar.gz \ + "https://codeload.github.com/gcc-mirror/gcc/tar.gz/refs/tags/releases/gcc-${GCC_TARBALL_VERSION}" + + GCC_sha512sum="$(sha512sum gcc.tar.gz | cut -d ' ' -f 1)" + execute "verify GCC SHA-512" \ + "Hash verification failed; new: ${GCC_sha512sum}" \ + test "${GCC_sha512sum}" = "${GCC_TARBALL_SHA512}" + + execute "extract GCC tarball" "" \ + tar -xzf gcc.tar.gz --one-top-level=gcc/ --strip-components=1 + fi execute "downloading config.guess" "" \ curl -o config.guess \ "https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD" + + CONFIG_GUESS_sha512sum="$(sha512sum config.guess | cut -d ' ' -f 1)" + execute "verify config.guess SHA-512" \ + "SHA-512 hash verification failed; new: ${CONFIG_GUESS_sha512sum}" \ + test "${CONFIG_GUESS_sha512sum}" = "${CONFIG_GUESS_EXPECTED_SHA512}" } build() @@ -289,6 +348,7 @@ while :; do CACHED_SOURCES=1 ;; --binutils-branch) + USE_TARBALL_RELEASES=0 if [ "$2" ]; then BINUTILS_BRANCH="$2" shift @@ -297,12 +357,14 @@ while :; do fi ;; --binutils-branch=?*) + USE_TARBALL_RELEASES=0 BINUTILS_BRANCH=${1#*=} ;; --binutils-branch=) arg_error "'--binutils-branch' requires a non-empty option argument" ;; --gcc-branch) + USE_TARBALL_RELEASES=0 if [ "$2" ]; then GCC_BRANCH="$2" shift @@ -311,12 +373,14 @@ while :; do fi ;; --gcc-branch=?*) + USE_TARBALL_RELEASES=0 GCC_BRANCH=${1#*=} ;; --gcc-branch=) arg_error "'--gcc-branch' requires a non-empty option argument" ;; --mingw-w64-branch) + USE_TARBALL_RELEASES=0 if [ "$2" ]; then MINGW_W64_BRANCH="$2" shift @@ -325,11 +389,15 @@ while :; do fi ;; --mingw-w64-branch=?*) + USE_TARBALL_RELEASES=0 MINGW_W64_BRANCH=${1#*=} ;; --mingw-w64-branch=) arg_error "'--mingw-w64-branch' requires a non-empty option argument" ;; + --force-git) + USE_TARBALL_RELEASES=0 + ;; i686) BUILD_I686=1 ;; @@ -364,7 +432,7 @@ if [ ! "$BUILD_I686" ] && [ ! "$BUILD_X86_64" ]; then fi MISSING_EXECS="" -for exec in g++ flex bison git makeinfo m4 bzip2 curl make diff; do +for exec in g++ flex bison git makeinfo m4 bzip2 curl make diff sha512sum cut test; do if ! command -v "$exec" >/dev/null; then MISSING_EXECS="$MISSING_EXECS $exec" fi @@ -373,7 +441,11 @@ if [ "$MISSING_EXECS" ]; then error_exit "missing required executable(s):$MISSING_EXECS" fi -TOTAL_STEPS=0 +TOTAL_STEPS=1 + +if [ "${USE_TARBALL_RELEASES}" -ne 0 ]; then + TOTAL_STEPS=$((TOTAL_STEPS + 6)) +fi if [ "$CACHED_SOURCES" ]; then if [ ! -f "$SRC_PATH/config.guess" ]; then |