mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-03-08 04:24:33 +01:00
std.os.linux: Adjust for rename of mips syscall enums.
This commit is contained in:
parent
e77b3ff74f
commit
7e0f9c45f2
1 changed files with 2 additions and 2 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue