mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 05:44:20 +00:00
test: Add hexagon-linux-(none,musl) to the test matrix.
This skips std tests for now: https://github.com/llvm/llvm-project/pull/111217
This commit is contained in:
parent
01b5e8b296
commit
d01f2aa6e7
1 changed files with 20 additions and 0 deletions
|
|
@ -497,6 +497,26 @@ const test_targets = blk: {
|
|||
.pic = false, // Long calls don't work with PIC.
|
||||
},
|
||||
|
||||
.{
|
||||
.target = .{
|
||||
.cpu_arch = .hexagon,
|
||||
.os_tag = .linux,
|
||||
.abi = .none,
|
||||
},
|
||||
// https://github.com/llvm/llvm-project/pull/111217
|
||||
.skip_modules = &.{"std"},
|
||||
},
|
||||
.{
|
||||
.target = .{
|
||||
.cpu_arch = .hexagon,
|
||||
.os_tag = .linux,
|
||||
.abi = .musl,
|
||||
},
|
||||
.link_libc = true,
|
||||
// https://github.com/llvm/llvm-project/pull/111217
|
||||
.skip_modules = &.{"std"},
|
||||
},
|
||||
|
||||
.{
|
||||
.target = .{
|
||||
.cpu_arch = .loongarch64,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue