| ... | @@ -113,7 +113,7 @@ pub fn osArchName(target: std.Target) [:0]const u8 { | ... | @@ -113,7 +113,7 @@ pub fn osArchName(target: std.Target) [:0]const u8 { |
| 113 | return switch (target.os.tag) { | 113 | return switch (target.os.tag) { |
| 114 | .linux => switch (target.cpu.arch) { | 114 | .linux => switch (target.cpu.arch) { |
| 115 | .arm, .armeb, .thumb, .thumbeb => "arm", | 115 | .arm, .armeb, .thumb, .thumbeb => "arm", |
| 116 | .aarch64, .aarch64_be, .aarch64_32 => "arm64", | 116 | .aarch64, .aarch64_be, .aarch64_32 => "aarch64", |
| 117 | .mips, .mipsel, .mips64, .mips64el => "mips", | 117 | .mips, .mipsel, .mips64, .mips64el => "mips", |
| 118 | .powerpc, .powerpcle, .powerpc64, .powerpc64le => "powerpc", | 118 | .powerpc, .powerpcle, .powerpc64, .powerpc64le => "powerpc", |
| 119 | .riscv32, .riscv64 => "riscv", | 119 | .riscv32, .riscv64 => "riscv", |