diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2022-08-30 20:40:44 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2022-08-30 20:40:44 +0200 |
commit | 203681560fdcb39bc9550357dc65e2a53baab801 (patch) | |
tree | cb30149d4121211cc5c65bedd47422527a407012 | |
parent | 9f9256edff0475cee3de726d780f5cc968e71f14 (diff) | |
parent | 6bc1c85e033ab85242e479f20d5e0aef1cdba71b (diff) |
Merge branch 'mingw-w64-build' into mingw-w64-build-ng
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
-rw-r--r-- | README.md | 4 | ||||
-rwxr-xr-x | mingw-w64-build | 27 |
2 files changed, 25 insertions, 6 deletions
@@ -9,8 +9,8 @@ files. ## Default Branches * [MinGW-w64](https://mingw-w64.org) v9.x -* [Binutils](https://www.gnu.org/software/binutils/) binutils-2_37-branch -* [GCC](https://gcc.gnu.org/) releases/gcc-11 +* [Binutils](https://www.gnu.org/software/binutils/) binutils-2_39-branch +* [GCC](https://gcc.gnu.org/) releases/gcc-12 ## Default Prefix `$HOME/.zeranoe/mingw-w64/i686` and `$HOME/.zeranoe/mingw-w64/x86_64` are the diff --git a/mingw-w64-build b/mingw-w64-build index 60fe9b8..a09139b 100755 --- a/mingw-w64-build +++ b/mingw-w64-build @@ -1,6 +1,6 @@ #!/bin/bash # -# Copyright (C) 2021 Kyle Schwarz <zeranoe@gmail.com>, Toni Uhlig <matzeton@googlemail.com> +# Copyright (C) 2022 Kyle Schwarz <zeranoe@gmail.com>, Toni Uhlig <matzeton@googlemail.com> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -19,8 +19,8 @@ ROOT_PATH="$HOME/.mingw-w64-build-ng" MINGW_W64_BRANCH="v9.x" -BINUTILS_BRANCH="binutils-2_37-branch" -GCC_BRANCH="releases/gcc-11" +BINUTILS_BRANCH="binutils-2_39-branch" +GCC_BRANCH="releases/gcc-12" USE_TARBALL_RELEASES=1 @@ -36,6 +36,8 @@ ENABLE_THREADS="--enable-threads=posix" JOB_COUNT=$(($(getconf _NPROCESSORS_ONLN) + 2)) +LINKED_RUNTIME="msvcrt" + show_help() { cat <<EOF @@ -58,6 +60,7 @@ Options: --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) + --linked-runtime <runtime> set MinGW Linked Runtime (default: $LINKED_RUNTIME) EOF } @@ -230,7 +233,8 @@ build() execute "($arch): configuring MinGW-w64 headers" "" \ "$SRC_PATH/mingw-w64/mingw-w64-headers/configure" --build="$BUILD" \ - --host="$host" --prefix="$prefix/$host" + --host="$host" --prefix="$prefix/$host" \ + --with-default-msvcrt=$LINKED_RUNTIME execute "($arch): installing MinGW-w64 headers" "" \ make install @@ -255,6 +259,7 @@ build() execute "($arch): configuring MinGW-w64 CRT" "" \ "$SRC_PATH/mingw-w64/mingw-w64-crt/configure" --build="$BUILD" \ --host="$host" --prefix="$prefix/$host" \ + --with-default-msvcrt=$LINKED_RUNTIME \ --with-sysroot="$prefix/$host" $crt_lib execute "($arch): building MinGW-w64 CRT" "" \ @@ -369,6 +374,20 @@ while :; do --gcc-branch=) arg_error "'--gcc-branch' requires a non-empty option argument" ;; + --linked-runtime) + if [ "$2" ]; then + LINKED_RUNTIME="$2" + shift + else + arg_error "'--linked-runtime' requires a non-empty option argument" + fi + ;; + --linked-runtime=?*) + LINKED_RUNTIME=${1#*=} + ;; + --linked-runtime=) + arg_error "'--linked-runtime' requires a non-empty option argument" + ;; --mingw-w64-branch) USE_TARBALL_RELEASES=0 if [ "$2" ]; then |