Merge pull request #21469 from alexrp/riscv32-tests

`test`: Add `riscv32-linux-(none,musl,gnu)` triples for module tests.
This commit is contained in:
Alex Rønne Petersen 2024-10-03 00:16:43 +02:00 committed by GitHub
commit 0548a61f53
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -579,6 +579,30 @@ const test_targets = blk: {
.link_libc = true,
},
.{
.target = .{
.cpu_arch = .riscv32,
.os_tag = .linux,
.abi = .none,
},
},
.{
.target = .{
.cpu_arch = .riscv32,
.os_tag = .linux,
.abi = .musl,
},
.link_libc = true,
},
.{
.target = .{
.cpu_arch = .riscv32,
.os_tag = .linux,
.abi = .gnu,
},
.link_libc = true,
},
.{
.target = .{
.cpu_arch = .riscv64,