Add arm64 build support to the build script (#18946)

It built successfully following the documentation on my Snapdragon
Surface Laptop :)
This commit is contained in:
James Pack 2025-06-24 16:56:49 -04:00 committed by GitHub
parent 9c452cd985
commit 6e1f4a72be
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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