| author | |
| committer | |
| log | 496e90a487ac3204e4c7fb1ec803a5d2f0bd422d |
| tree | f360d662c98b75080d932e81f63715e6f8a92341 |
| parent | d83a3f1746c81026d1cf0244156513c9b5a2a9f6 |
| signature |
1 files changed, 24 insertions(+), 0 deletions(-)
test/tests.zig+24| ... | @@ -579,6 +579,30 @@ const test_targets = blk: { | ... | @@ -579,6 +579,30 @@ const test_targets = blk: { |
| 579 | .link_libc = true, | 579 | .link_libc = true, |
| 580 | }, | 580 | }, |
| 581 | 581 | ||
| 582 | .{ | ||
| 583 | .target = .{ | ||
| 584 | .cpu_arch = .riscv32, | ||
| 585 | .os_tag = .linux, | ||
| 586 | .abi = .none, | ||
| 587 | }, | ||
| 588 | }, | ||
| 589 | .{ | ||
| 590 | .target = .{ | ||
| 591 | .cpu_arch = .riscv32, | ||
| 592 | .os_tag = .linux, | ||
| 593 | .abi = .musl, | ||
| 594 | }, | ||
| 595 | .link_libc = true, | ||
| 596 | }, | ||
| 597 | .{ | ||
| 598 | .target = .{ | ||
| 599 | .cpu_arch = .riscv32, | ||
| 600 | .os_tag = .linux, | ||
| 601 | .abi = .gnu, | ||
| 602 | }, | ||
| 603 | .link_libc = true, | ||
| 604 | }, | ||
| 605 | |||
| 582 | .{ | 606 | .{ |
| 583 | .target = .{ | 607 | .target = .{ |
| 584 | .cpu_arch = .riscv64, | 608 | .cpu_arch = .riscv64, |