authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2024-07-26 06:01:06+02:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2024-07-30 01:32:48+02:00
log7e0f9c45f2ee6980cf6582c8f7ef09f3e10f200e
treed64f95300cbc603b5d8df06764c72f31d6ca9974
parente77b3ff74f11a697ce24f4538fda6f9a227f8697
signaturebadge-check Signed by SSH key SHA256:7B/LJ7bpR1eX8aCXSr4mtd5M45VMPKcx9zY8e95b5QM

std.os.linux: Adjust for rename of mips syscall enums.


1 files changed, 2 insertions(+), 2 deletions(-)

lib/std/os/linux.zig+2-2
......@@ -108,8 +108,8 @@ pub const SYS = switch (@import("builtin").cpu.arch) {
108108 .riscv32 => syscalls.RiscV32,
109109 .riscv64 => syscalls.RiscV64,
110110 .sparc64 => syscalls.Sparc64,
111 .mips, .mipsel => syscalls.Mips,
112 .mips64, .mips64el => syscalls.Mips64,
111 .mips, .mipsel => syscalls.MipsO32,
112 .mips64, .mips64el => syscalls.MipsN64,
113113 .powerpc, .powerpcle => syscalls.PowerPC,
114114 .powerpc64, .powerpc64le => syscalls.PowerPC64,
115115 else => @compileError("The Zig Standard Library is missing syscall definitions for the target CPU architecture"),