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 /test/tests.zig | |
| parent | a9eb4a6740e0bb00e1984de3768a7de6001c25dd (diff) | |
| download | zig-c829f2f7b7c5bdd13d3c39ae2960ed108393a210.tar.gz zig-c829f2f7b7c5bdd13d3c39ae2960ed108393a210.zip | |
Add mips support to standard library
Diffstat (limited to 'test/tests.zig')
| -rw-r--r-- | test/tests.zig | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/test/tests.zig b/test/tests.zig index a8c42c7495..d5fdbd74cf 100644 --- a/test/tests.zig +++ b/test/tests.zig @@ -147,6 +147,31 @@ const test_targets = blk: { TestTarget{ .target = .{ + .cpu_arch = .mips, + .os_tag = .linux, + .abi = .none, + }, + }, + TestTarget{ + .target = .{ + .cpu_arch = .mips, + .os_tag = .linux, + .abi = .musl, + }, + .link_libc = true, + }, + // https://github.com/ziglang/zig/issues/4927 + //TestTarget{ + // .target = .{ + // .cpu_arch = .mips, + // .os_tag = .linux, + // .abi = .gnu, + // }, + // .link_libc = true, + //}, + + TestTarget{ + .target = .{ .cpu_arch = .mipsel, .os_tag = .linux, .abi = .none, |
