zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 34652038248ff209e4bee60bcd2d7299404b15fe (tree)
parent 480c3c4d0a61d13fea9b90f575a836d2ec1c1c29
Author: Jakub Konka <kubkon@jakubkonka.com>
Date:   Thu,  3 Nov 2022 15:07:31 +0100

libc: add support for arm64 msvc installation

Diffstat:
Msrc/libc_installation.zig | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git 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, };