Add target for Windows ARM64 in cross-compile.sh (#3512)

This commit is contained in:
Creeper Lv 2024-10-22 04:33:14 +11:00 committed by GitHub
parent 8c0e0fa2ed
commit 3cb8069e4a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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"