1
Fork 0
This commit is contained in:
Motiejus Jakštys 2024-11-09 18:02:11 +02:00
parent 902c9b1390
commit 94d7058022
1 changed files with 20 additions and 0 deletions

20
run
View File

@ -520,6 +520,25 @@ step22() {
{
pushd "../zig-$STEP22_"
../zig-$STEP21_/build/zig2 build --zig-lib-dir lib update-zig1
popd
}
}
# commit 31738de2817f7932fa9237492f20fb736bc07dd3 (HEAD, replaced)
# Merge: 335a6bb0b2 4f3ce7411e
# Author: Jakub Konka <kubkon@jakubkonka.com>
# Date: Thu Apr 13 13:53:01 2023 +0200
#
# Merge pull request #15184 from jacobly0/x86_64
#
STEP23=31738de2817f7932fa9237492f20fb736bc07dd3
STEP23_=0.10.0-2571-g31738de281
step23() {
rm -fr "../zig-$STEP23_"
git archive --prefix=zig-$STEP23_/ $STEP23 | tar -C .. -x
{
pushd "../zig-$STEP23_"
cp ../zig-$STEP22_/stage1/zig1.wasm stage1/zig1.wasm
halfbuild 16
popd
}
@ -554,4 +573,5 @@ if [[ "${BASH_SOURCE[0]}" == "${0}" ]]; then
if [[ "$step" -le 20 ]]; then step20; fi
if [[ "$step" -le 21 ]]; then step21; fi
if [[ "$step" -le 22 ]]; then step22; fi
if [[ "$step" -le 23 ]]; then step23; fi
fi