From 32146f19d87448d8e3bb4019be6b8d9ff1cb72ee Mon Sep 17 00:00:00 2001 From: Ogulcan Celik Date: Thu, 2 Jul 2026 20:44:20 +0300 Subject: [PATCH] fix: allow windows arm64 installer fallback refs #897 --- website/install.ps1 | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/website/install.ps1 b/website/install.ps1 index 37ad8f78..7cff1436 100644 --- a/website/install.ps1 +++ b/website/install.ps1 @@ -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