File tree 1 file changed +27
-40
lines changed
1 file changed +27
-40
lines changed Original file line number Diff line number Diff line change @@ -579,52 +579,39 @@ const test_targets = blk: {
579
579
.link_libc = true ,
580
580
},
581
581
582
- // Disabled until LLVM fixes their O(N^2) codegen. Note that this is so bad that we don't
583
- // even want to include this in CI with `slow_backend`.
584
- // https://github.com/ziglang/zig/issues/18872
585
- //.{
586
- // .target = .{
587
- // .cpu_arch = .riscv64,
588
- // .os_tag = .linux,
589
- // .abi = .none,
590
- // },
591
- // .use_llvm = true,
592
- //},
593
-
594
- // Disabled until LLVM fixes their O(N^2) codegen. Note that this is so bad that we don't
595
- // even want to include this in CI with `slow_backend`.
596
- // https://github.com/ziglang/zig/issues/18872
597
- //.{
598
- // .target = .{
599
- // .cpu_arch = .riscv64,
600
- // .os_tag = .linux,
601
- // .abi = .musl,
602
- // },
603
- // .link_libc = true,
604
- // .use_llvm = true,
605
- //},
582
+ .{
583
+ .target = .{
584
+ .cpu_arch = .riscv64 ,
585
+ .os_tag = .linux ,
586
+ .abi = .none ,
587
+ },
588
+ },
589
+ .{
590
+ .target = .{
591
+ .cpu_arch = .riscv64 ,
592
+ .os_tag = .linux ,
593
+ .abi = .musl ,
594
+ },
595
+ .link_libc = true ,
596
+ },
597
+ .{
598
+ .target = .{
599
+ .cpu_arch = .riscv64 ,
600
+ .os_tag = .linux ,
601
+ .abi = .gnu ,
602
+ },
603
+ .link_libc = true ,
604
+ },
606
605
607
606
.{
608
- .target = std .Target .Query .parse (
609
- .{
610
- .arch_os_abi = "riscv64-linux-musl" ,
611
- .cpu_features = "baseline+v+zbb" ,
612
- },
613
- ) catch @panic ("OOM" ),
607
+ .target = std .Target .Query .parse (.{
608
+ .arch_os_abi = "riscv64-linux-musl" ,
609
+ .cpu_features = "baseline+v+zbb" ,
610
+ }) catch @panic ("OOM" ),
614
611
.use_llvm = false ,
615
612
.use_lld = false ,
616
613
},
617
614
618
- // https://github.com/ziglang/zig/issues/3340
619
- //.{
620
- // .target = .{
621
- // .cpu_arch = .riscv64,
622
- // .os = .linux,
623
- // .abi = .gnu,
624
- // },
625
- // .link_libc = true,
626
- //},
627
-
628
615
.{
629
616
.target = .{
630
617
.cpu_arch = .x86_64 ,
You can’t perform that action at this time.
0 commit comments