Upstream issue: https://github.com/ziglang/zig/issues/8155 Zig fails to cross-compile to MIPS architectures with LLVM 12.0.0. The issue is fixed in LLVM 12.0.1. diff --git a/test/tests.zig b/test/tests.zig index b80c082fb..cd0c24fc9 100644 --- a/test/tests.zig +++ b/test/tests.zig @@ -153,22 +153,22 @@ const test_targets = blk: { // .link_libc = true, //}, - TestTarget{ - .target = .{ - .cpu_arch = .mips, - .os_tag = .linux, - .abi = .none, - }, - }, - - TestTarget{ - .target = .{ - .cpu_arch = .mips, - .os_tag = .linux, - .abi = .musl, - }, - .link_libc = true, - }, + // 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{ @@ -180,22 +180,22 @@ const test_targets = blk: { // .link_libc = true, //}, - TestTarget{ - .target = .{ - .cpu_arch = .mipsel, - .os_tag = .linux, - .abi = .none, - }, - }, - - TestTarget{ - .target = .{ - .cpu_arch = .mipsel, - .os_tag = .linux, - .abi = .musl, - }, - .link_libc = true, - }, + // TestTarget{ + // .target = .{ + // .cpu_arch = .mipsel, + // .os_tag = .linux, + // .abi = .none, + // }, + // }, + + // TestTarget{ + // .target = .{ + // .cpu_arch = .mipsel, + // .os_tag = .linux, + // .abi = .musl, + // }, + // .link_libc = true, + // }, // https://github.com/ziglang/zig/issues/4927 //TestTarget{