| ... | @@ -579,6 +579,20 @@ const test_targets = blk: { | ... | @@ -579,6 +579,20 @@ const test_targets = blk: { |
| 579 | .link_libc = true, | 579 | .link_libc = true, |
| 580 | }, | 580 | }, |
| 581 | | 581 | |
| | 582 | .{ |
| | 583 | .target = std.Target.Query.parse(.{ |
| | 584 | .arch_os_abi = "riscv32-linux-none", |
| | 585 | .cpu_features = "baseline-d-f", |
| | 586 | }) catch unreachable, |
| | 587 | }, |
| | 588 | .{ |
| | 589 | .target = std.Target.Query.parse(.{ |
| | 590 | .arch_os_abi = "riscv32-linux-musl", |
| | 591 | .cpu_features = "baseline-d-f", |
| | 592 | }) catch unreachable, |
| | 593 | .link_libc = true, |
| | 594 | }, |
| | 595 | |
| 582 | .{ | 596 | .{ |
| 583 | .target = .{ | 597 | .target = .{ |
| 584 | .cpu_arch = .riscv32, | 598 | .cpu_arch = .riscv32, |
| ... | @@ -603,6 +617,20 @@ const test_targets = blk: { | ... | @@ -603,6 +617,20 @@ const test_targets = blk: { |
| 603 | .link_libc = true, | 617 | .link_libc = true, |
| 604 | }, | 618 | }, |
| 605 | | 619 | |
| | 620 | .{ |
| | 621 | .target = std.Target.Query.parse(.{ |
| | 622 | .arch_os_abi = "riscv64-linux-none", |
| | 623 | .cpu_features = "baseline-d-f", |
| | 624 | }) catch unreachable, |
| | 625 | }, |
| | 626 | .{ |
| | 627 | .target = std.Target.Query.parse(.{ |
| | 628 | .arch_os_abi = "riscv64-linux-musl", |
| | 629 | .cpu_features = "baseline-d-f", |
| | 630 | }) catch unreachable, |
| | 631 | .link_libc = true, |
| | 632 | }, |
| | 633 | |
| 606 | .{ | 634 | .{ |
| 607 | .target = .{ | 635 | .target = .{ |
| 608 | .cpu_arch = .riscv64, | 636 | .cpu_arch = .riscv64, |
| ... | @@ -631,7 +659,7 @@ const test_targets = blk: { | ... | @@ -631,7 +659,7 @@ const test_targets = blk: { |
| 631 | .target = std.Target.Query.parse(.{ | 659 | .target = std.Target.Query.parse(.{ |
| 632 | .arch_os_abi = "riscv64-linux-musl", | 660 | .arch_os_abi = "riscv64-linux-musl", |
| 633 | .cpu_features = "baseline+v+zbb", | 661 | .cpu_features = "baseline+v+zbb", |
| 634 | }) catch @panic("OOM"), | 662 | }) catch unreachable, |
| 635 | .use_llvm = false, | 663 | .use_llvm = false, |
| 636 | .use_lld = false, | 664 | .use_lld = false, |
| 637 | }, | 665 | }, |