libc: add support for arm64 msvc installation

This commit is contained in:
Jakub Konka 2022-11-03 15:07:31 +01:00
parent 480c3c4d0a
commit 3465203824

View File

@ -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,
};