From 3cb8069e4a013b73cbe3835cd151e01abe9c309f Mon Sep 17 00:00:00 2001 From: Creeper Lv Date: Tue, 22 Oct 2024 04:33:14 +1100 Subject: [PATCH] Add target for Windows ARM64 in cross-compile.sh (#3512) --- tools/cross-compile.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/cross-compile.sh b/tools/cross-compile.sh index a617773c..88cc18a8 100755 --- a/tools/cross-compile.sh +++ b/tools/cross-compile.sh @@ -106,6 +106,10 @@ echo "Windows 64" GOOS=windows GOARCH=amd64 make build create_artefact_windows "win64" +echo "Windows ARM 64" +GOOS=windows GOARCH=arm64 make build +create_artefact_windows "win-arm64" + echo "Windows 32" GOOS=windows GOARCH=386 make build create_artefact_windows "win32"