authorgravatar for kubkon@jakubkonka.comJakub Konka <kubkon@jakubkonka.com> 2022-11-03 15:07:31+01:00
committergravatar for kubkon@jakubkonka.comJakub Konka <kubkon@jakubkonka.com> 2022-11-03 15:07:31+01:00
log34652038248ff209e4bee60bcd2d7299404b15fe
tree66ada65116d3790b8cea58b58241dd28a7dbad59
parent480c3c4d0a61d13fea9b90f575a836d2ec1c1c29

libc: add support for arm64 msvc installation


1 files changed, 2 insertions(+), 0 deletions(-)

src/libc_installation.zig+2
...@@ -411,6 +411,7 @@ pub const LibCInstallation = struct {...@@ -411,6 +411,7 @@ pub const LibCInstallation = struct {
411 .i386 => "x86",411 .i386 => "x86",
412 .x86_64 => "x64",412 .x86_64 => "x64",
413 .arm, .armeb => "arm",413 .arm, .armeb => "arm",
414 .aarch64 => "arm64",
414 else => return error.UnsupportedArchitecture,415 else => return error.UnsupportedArchitecture,
415 };416 };
416417
...@@ -474,6 +475,7 @@ pub const LibCInstallation = struct {...@@ -474,6 +475,7 @@ pub const LibCInstallation = struct {
474 .i386 => "x86",475 .i386 => "x86",
475 .x86_64 => "x64",476 .x86_64 => "x64",
476 .arm, .armeb => "arm",477 .arm, .armeb => "arm",
478 .aarch64 => "arm64",
477 else => return error.UnsupportedArchitecture,479 else => return error.UnsupportedArchitecture,
478 };480 };
479481