diff options
| author | Timon Kruiper <timonkruiper@gmail.com> | 2020-04-21 18:42:21 +0200 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2020-04-24 15:28:55 -0400 |
| commit | c829f2f7b7c5bdd13d3c39ae2960ed108393a210 (patch) | |
| tree | f93b1df14908722f4e587f438102813067e3a4c6 /lib/std/os/bits/linux.zig | |
| parent | a9eb4a6740e0bb00e1984de3768a7de6001c25dd (diff) | |
| download | zig-c829f2f7b7c5bdd13d3c39ae2960ed108393a210.tar.gz zig-c829f2f7b7c5bdd13d3c39ae2960ed108393a210.zip | |
Add mips support to standard library
Diffstat (limited to 'lib/std/os/bits/linux.zig')
| -rw-r--r-- | lib/std/os/bits/linux.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/os/bits/linux.zig b/lib/std/os/bits/linux.zig index 6f4e9b803d..1d2a957036 100644 --- a/lib/std/os/bits/linux.zig +++ b/lib/std/os/bits/linux.zig @@ -14,7 +14,7 @@ pub usingnamespace switch (builtin.arch) { .aarch64 => @import("linux/arm64.zig"), .arm => @import("linux/arm-eabi.zig"), .riscv64 => @import("linux/riscv64.zig"), - .mipsel => @import("linux/mipsel.zig"), + .mips, .mipsel => @import("linux/mips.zig"), else => struct {}, }; |
