aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2022-09-02 13:39:46 +0200
committerToni Uhlig <matzeton@googlemail.com>2022-09-02 13:39:46 +0200
commit8a7732f2a59742aa35d1447c5bac237ed5f885ef (patch)
tree603b78744cd312c624344b71de4bfc17242c0e77
parentd7c2b67c31d6f94c4fe49412ccf3b32a23b3905d (diff)
Generate tarball useful for CI work etc.
* fixed invalid invalid progress display (TOTAL_STEPS) Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
-rwxr-xr-xmingw-w64-build28
1 files changed, 26 insertions, 2 deletions
diff --git a/mingw-w64-build b/mingw-w64-build
index f0b030f..cf94aa5 100755
--- a/mingw-w64-build
+++ b/mingw-w64-build
@@ -61,6 +61,7 @@ Options:
--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)
+ --tarball <path> generate a toolchain tarball
EOF
}
@@ -407,6 +408,14 @@ while :; do
--force-git)
USE_TARBALL_RELEASES=0
;;
+ --tarball)
+ if [ "$2" ]; then
+ TARBALL=$(realpath "$2")
+ shift
+ else
+ arg_error "'--tarball' requires a non-empty option argument"
+ fi
+ ;;
i686)
BUILD_I686=1
;;
@@ -450,7 +459,7 @@ if [ "$MISSING_EXECS" ]; then
error_exit "missing required executable(s):$MISSING_EXECS"
fi
-TOTAL_STEPS=1
+TOTAL_STEPS=0
if [ "${USE_TARBALL_RELEASES}" -ne 0 ]; then
TOTAL_STEPS=$((TOTAL_STEPS + 6))
@@ -477,6 +486,10 @@ else
BUILD_STEPS=13
fi
+if [ ! -z "${TARBALL}" ]; then
+ TOTAL_STEPS=$((TOTAL_STEPS + 1))
+fi
+
TOTAL_STEPS=$((TOTAL_STEPS + THREADS_STEPS + BUILD_STEPS))
if [ "$PREFIX" ]; then
@@ -527,6 +540,17 @@ if [ ! "$KEEP_ARTIFACTS" ]; then
remove_path "$LOG_FILE"
fi
-printf "%s\n" "$COMPLETE_MSG"
+if [ ! -z ${TARBALL} ]; then
+ if [ "$BUILD_I686" ]; then
+ TAR_DIRS="i686"
+ fi
+ if [ "$BUILD_X86_64" ]; then
+ TAR_DIRS="${TAR_DIRS} x86_64"
+ fi
+ execute "generating tarball ${TARBALL}" "" \
+ cd ${ROOT_PATH} && tar --transform "s,^,mingw-w64-sysroot/," -cjf ${TARBALL} ${TAR_DIRS}
+fi
+
+printf "(%d/%d): %s\n" "$CURRENT_STEP" "$TOTAL_STEPS" "$COMPLETE_MSG"
exit 0