From 94d70580223d0097415aa450ead345eaa2279ba9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Motiejus=20Jak=C5=A1tys?= Date: Sat, 9 Nov 2024 18:02:11 +0200 Subject: [PATCH] step23 --- run | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/run b/run index 55bf2fa..4e2a58a 100755 --- a/run +++ b/run @@ -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 +# 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