From 6e1f4a72bed24514943d88d04a368ba9465c7ad7 Mon Sep 17 00:00:00 2001 From: James Pack Date: Tue, 24 Jun 2025 16:56:49 -0400 Subject: [PATCH] Add arm64 build support to the build script (#18946) It built successfully following the documentation on my Snapdragon Surface Laptop :) --- tools/OpenConsole.psm1 | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/OpenConsole.psm1 b/tools/OpenConsole.psm1 index 05fc5af4c2..c11d46570f 100644 --- a/tools/OpenConsole.psm1 +++ b/tools/OpenConsole.psm1 @@ -83,6 +83,7 @@ function Set-MsbuildDevEnvironment switch ($env:PROCESSOR_ARCHITECTURE) { "amd64" { $arch = "x64" } "x86" { $arch = "x86" } + "arm64" { $arch = "arm64" } default { throw "Unknown architecture: $switch" } }