std.zig.target: Handle m68k in muslArchName().

This commit is contained in:
Alex Rønne Petersen 2024-07-24 05:33:03 +02:00 committed by Andrew Kelley
parent 9536d65230
commit 2458e53e73

View File

@ -105,6 +105,7 @@ pub fn muslArchName(arch: std.Target.Cpu.Arch) [:0]const u8 {
.arm, .armeb, .thumb, .thumbeb => return "arm",
.x86 => return "i386",
.loongarch64 => return "loongarch64",
.m68k => return "m68k",
.mips, .mipsel => return "mips",
.mips64el, .mips64 => return "mips64",
.powerpc => return "powerpc",