mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 05:44:20 +00:00
Merge pull request #25609 from alexrp/test-targets
`test`: put some niche targets behind `-Dtest-extra-targets`
This commit is contained in:
commit
3091efaa18
1 changed files with 12 additions and 1 deletions
|
|
@ -176,6 +176,7 @@ const test_targets = blk: {
|
|||
},
|
||||
.linkage = .dynamic,
|
||||
.link_libc = true,
|
||||
.extra_target = true,
|
||||
},
|
||||
.{
|
||||
.target = .{
|
||||
|
|
@ -607,6 +608,7 @@ const test_targets = blk: {
|
|||
.abi = .muslabin32,
|
||||
},
|
||||
.link_libc = true,
|
||||
.extra_target = true,
|
||||
},
|
||||
.{
|
||||
.target = .{
|
||||
|
|
@ -633,6 +635,7 @@ const test_targets = blk: {
|
|||
.abi = .gnuabin32,
|
||||
},
|
||||
.link_libc = true,
|
||||
.extra_target = true,
|
||||
},
|
||||
|
||||
.{
|
||||
|
|
@ -667,6 +670,7 @@ const test_targets = blk: {
|
|||
.abi = .muslabin32,
|
||||
},
|
||||
.link_libc = true,
|
||||
.extra_target = true,
|
||||
},
|
||||
.{
|
||||
.target = .{
|
||||
|
|
@ -693,6 +697,7 @@ const test_targets = blk: {
|
|||
.abi = .gnuabin32,
|
||||
},
|
||||
.link_libc = true,
|
||||
.extra_target = true,
|
||||
},
|
||||
|
||||
.{
|
||||
|
|
@ -701,6 +706,7 @@ const test_targets = blk: {
|
|||
.os_tag = .linux,
|
||||
.abi = .eabi,
|
||||
},
|
||||
.extra_target = true,
|
||||
},
|
||||
.{
|
||||
.target = .{
|
||||
|
|
@ -716,6 +722,7 @@ const test_targets = blk: {
|
|||
.abi = .musleabi,
|
||||
},
|
||||
.link_libc = true,
|
||||
.extra_target = true,
|
||||
},
|
||||
.{
|
||||
.target = .{
|
||||
|
|
@ -758,6 +765,7 @@ const test_targets = blk: {
|
|||
.link_libc = true,
|
||||
// https://github.com/ziglang/zig/issues/2256
|
||||
.skip_modules = &.{"std"},
|
||||
.extra_target = true,
|
||||
},
|
||||
.{
|
||||
.target = .{
|
||||
|
|
@ -1129,6 +1137,7 @@ const test_targets = blk: {
|
|||
.abi = .gnux32,
|
||||
},
|
||||
.link_libc = true,
|
||||
.extra_target = true,
|
||||
},
|
||||
.{
|
||||
.target = .{
|
||||
|
|
@ -1146,6 +1155,7 @@ const test_targets = blk: {
|
|||
},
|
||||
.linkage = .dynamic,
|
||||
.link_libc = true,
|
||||
.extra_target = true,
|
||||
},
|
||||
.{
|
||||
.target = .{
|
||||
|
|
@ -1154,6 +1164,7 @@ const test_targets = blk: {
|
|||
.abi = .muslx32,
|
||||
},
|
||||
.link_libc = true,
|
||||
.extra_target = true,
|
||||
},
|
||||
.{
|
||||
.target = .{
|
||||
|
|
@ -1309,6 +1320,7 @@ const test_targets = blk: {
|
|||
.abi = .eabi,
|
||||
},
|
||||
.link_libc = true,
|
||||
.extra_target = true,
|
||||
},
|
||||
.{
|
||||
.target = .{
|
||||
|
|
@ -1821,7 +1833,6 @@ const c_abi_targets = blk: {
|
|||
.os_tag = .linux,
|
||||
.abi = .muslx32,
|
||||
},
|
||||
.use_llvm = true,
|
||||
},
|
||||
|
||||
// WASI Targets
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue