mirror of
https://github.com/ziglang/zig.git
synced 2026-01-21 06:45:24 +00:00
std.os.linux: Adjust for rename of mips syscall enums.
This commit is contained in:
parent
e77b3ff74f
commit
7e0f9c45f2
@ -108,8 +108,8 @@ pub const SYS = switch (@import("builtin").cpu.arch) {
|
||||
.riscv32 => syscalls.RiscV32,
|
||||
.riscv64 => syscalls.RiscV64,
|
||||
.sparc64 => syscalls.Sparc64,
|
||||
.mips, .mipsel => syscalls.Mips,
|
||||
.mips64, .mips64el => syscalls.Mips64,
|
||||
.mips, .mipsel => syscalls.MipsO32,
|
||||
.mips64, .mips64el => syscalls.MipsN64,
|
||||
.powerpc, .powerpcle => syscalls.PowerPC,
|
||||
.powerpc64, .powerpc64le => syscalls.PowerPC64,
|
||||
else => @compileError("The Zig Standard Library is missing syscall definitions for the target CPU architecture"),
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user