mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-03-08 02:24:33 +01:00
disable RISC-V CI testing due to LLVM's O(N^2) codegen
tracked by #18872
This commit is contained in:
parent
d080622cc3
commit
dddddcffd0
1 changed files with 21 additions and 15 deletions
|
|
@ -412,22 +412,28 @@ const test_targets = blk: {
|
|||
.link_libc = true,
|
||||
},
|
||||
|
||||
.{
|
||||
.target = .{
|
||||
.cpu_arch = .riscv64,
|
||||
.os_tag = .linux,
|
||||
.abi = .none,
|
||||
},
|
||||
},
|
||||
// Disabled until LLVM fixes their O(N^2) codegen.
|
||||
// https://github.com/ziglang/zig/issues/18872
|
||||
//.{
|
||||
// .target = .{
|
||||
// .cpu_arch = .riscv64,
|
||||
// .os_tag = .linux,
|
||||
// .abi = .none,
|
||||
// },
|
||||
// .use_llvm = true,
|
||||
//},
|
||||
|
||||
.{
|
||||
.target = .{
|
||||
.cpu_arch = .riscv64,
|
||||
.os_tag = .linux,
|
||||
.abi = .musl,
|
||||
},
|
||||
.link_libc = true,
|
||||
},
|
||||
// Disabled until LLVM fixes their O(N^2) codegen.
|
||||
// https://github.com/ziglang/zig/issues/18872
|
||||
//.{
|
||||
// .target = .{
|
||||
// .cpu_arch = .riscv64,
|
||||
// .os_tag = .linux,
|
||||
// .abi = .musl,
|
||||
// },
|
||||
// .link_libc = true,
|
||||
// .use_llvm = true,
|
||||
//},
|
||||
|
||||
// https://github.com/ziglang/zig/issues/3340
|
||||
//.{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue