fix: allow windows arm64 installer fallback

refs #897
This commit is contained in:
Ogulcan Celik 2026-07-02 20:44:20 +03:00
parent 74a771d126
commit 32146f19d8
1 changed files with 5 additions and 0 deletions

View File

@ -401,6 +401,11 @@ switch ($architecture) {
$target = "windows-x86_64"
$targetTriple = "x86_64-pc-windows-msvc"
}
"Arm64" {
$target = "windows-x86_64"
$targetTriple = "x86_64-pc-windows-msvc"
Write-Step "Windows ARM64 detected; installing the x86_64 build under Windows emulation."
}
default {
Write-Error "Unsupported Windows architecture: $architecture"
exit 1