| ... | @@ -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 | }; |
| 416 | | 417 | |
| ... | @@ -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 | }; |
| 479 | | 481 | |