diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2022-11-03 19:49:10 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-03 19:49:10 -0400 |
| commit | 42755a1944f4c4a60fc7e5e66cf76e9cbdf1ce84 (patch) | |
| tree | 828ff79196fbf4074f8d6c841ff82fd39d295df7 /src | |
| parent | b19161ba9c9bb754d22fccef3d6f444941369ed6 (diff) | |
| parent | 34652038248ff209e4bee60bcd2d7299404b15fe (diff) | |
| download | zig-42755a1944f4c4a60fc7e5e66cf76e9cbdf1ce84.tar.gz zig-42755a1944f4c4a60fc7e5e66cf76e9cbdf1ce84.zip | |
Merge pull request #13430 from ziglang/stack-probe-msvc
Miscellaneous arm64 windows fixes
Diffstat (limited to 'src')
| -rw-r--r-- | src/libc_installation.zig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libc_installation.zig b/src/libc_installation.zig index f9f6b37fba..58910ba12f 100644 --- a/src/libc_installation.zig +++ b/src/libc_installation.zig @@ -411,6 +411,7 @@ pub const LibCInstallation = struct { .i386 => "x86", .x86_64 => "x64", .arm, .armeb => "arm", + .aarch64 => "arm64", else => return error.UnsupportedArchitecture, }; @@ -474,6 +475,7 @@ pub const LibCInstallation = struct { .i386 => "x86", .x86_64 => "x64", .arm, .armeb => "arm", + .aarch64 => "arm64", else => return error.UnsupportedArchitecture, }; |
