mirror of
https://github.com/ziglang/zig.git
synced 2025-12-15 10:43:08 +00:00
parent
9b60aa0adc
commit
2a24c17be2
@ -579,52 +579,39 @@ const test_targets = blk: {
|
|||||||
.link_libc = true,
|
.link_libc = true,
|
||||||
},
|
},
|
||||||
|
|
||||||
// Disabled until LLVM fixes their O(N^2) codegen. Note that this is so bad that we don't
|
.{
|
||||||
// even want to include this in CI with `slow_backend`.
|
.target = .{
|
||||||
// https://github.com/ziglang/zig/issues/18872
|
.cpu_arch = .riscv64,
|
||||||
//.{
|
.os_tag = .linux,
|
||||||
// .target = .{
|
.abi = .none,
|
||||||
// .cpu_arch = .riscv64,
|
},
|
||||||
// .os_tag = .linux,
|
},
|
||||||
// .abi = .none,
|
.{
|
||||||
// },
|
.target = .{
|
||||||
// .use_llvm = true,
|
.cpu_arch = .riscv64,
|
||||||
//},
|
.os_tag = .linux,
|
||||||
|
.abi = .musl,
|
||||||
// Disabled until LLVM fixes their O(N^2) codegen. Note that this is so bad that we don't
|
},
|
||||||
// even want to include this in CI with `slow_backend`.
|
.link_libc = true,
|
||||||
// https://github.com/ziglang/zig/issues/18872
|
},
|
||||||
//.{
|
.{
|
||||||
// .target = .{
|
.target = .{
|
||||||
// .cpu_arch = .riscv64,
|
.cpu_arch = .riscv64,
|
||||||
// .os_tag = .linux,
|
.os_tag = .linux,
|
||||||
// .abi = .musl,
|
.abi = .gnu,
|
||||||
// },
|
},
|
||||||
// .link_libc = true,
|
.link_libc = true,
|
||||||
// .use_llvm = true,
|
},
|
||||||
//},
|
|
||||||
|
|
||||||
.{
|
.{
|
||||||
.target = std.Target.Query.parse(
|
.target = std.Target.Query.parse(.{
|
||||||
.{
|
|
||||||
.arch_os_abi = "riscv64-linux-musl",
|
.arch_os_abi = "riscv64-linux-musl",
|
||||||
.cpu_features = "baseline+v+zbb",
|
.cpu_features = "baseline+v+zbb",
|
||||||
},
|
}) catch @panic("OOM"),
|
||||||
) catch @panic("OOM"),
|
|
||||||
.use_llvm = false,
|
.use_llvm = false,
|
||||||
.use_lld = false,
|
.use_lld = false,
|
||||||
},
|
},
|
||||||
|
|
||||||
// https://github.com/ziglang/zig/issues/3340
|
|
||||||
//.{
|
|
||||||
// .target = .{
|
|
||||||
// .cpu_arch = .riscv64,
|
|
||||||
// .os = .linux,
|
|
||||||
// .abi = .gnu,
|
|
||||||
// },
|
|
||||||
// .link_libc = true,
|
|
||||||
//},
|
|
||||||
|
|
||||||
.{
|
.{
|
||||||
.target = .{
|
.target = .{
|
||||||
.cpu_arch = .x86_64,
|
.cpu_arch = .x86_64,
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user