This commit is contained in:
2024-11-08 16:47:27 +02:00
parent ec42eb8bc8
commit cd6a987e9a
2 changed files with 25 additions and 3 deletions

22
run
View File

@@ -263,6 +263,27 @@ step09() {
}
}
# commit 4c1007fc044689b8cbc20634d73debb43df8efe1
# Merge: 4172c29166 23b1544f6c
# Author: Andrew Kelley <andrew@ziglang.org>
# Date: 2023-01-02T23:11:17+02:00
#
# Merge pull request #14002 from kcbanner/cbe_msvc_compatibility
#
STEP10=4c1007fc044689b8cbc20634d73debb43df8efe1
STEP10_=0.10.0-1073-g4c1007fc04
step10() {
rm -fr "../zig-$STEP10"
git archive --prefix=zig-$STEP10_/ $STEP10 | tar -C .. -x
{
pushd "../zig-$STEP10_"
../zig-$STEP09_/build/stage3/bin/zig build --zig-lib-dir lib update-zig1
fullbuild
popd
}
}
if [[ "${BASH_SOURCE[0]}" == "${0}" ]]; then
set -xeuo pipefail
step=${1:-step00}
@@ -279,4 +300,5 @@ if [[ "${BASH_SOURCE[0]}" == "${0}" ]]; then
if [[ "$step" -le 7 ]]; then step07; fi
if [[ "$step" -le 8 ]]; then step08; fi
if [[ "$step" -le 9 ]]; then step09; fi
if [[ "$step" -le 10 ]]; then step10; fi
fi