fix aarch64 include path

This commit is contained in:
Motiejus Jakštys 2022-01-26 09:10:12 +02:00 committed by Motiejus Jakštys
parent 7107a0fc40
commit 26e54d8a32

View File

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