mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
test: enable module tests for maccatalyst targets
This commit is contained in:
parent
bbdf8eaf75
commit
96dfffb7f5
1 changed files with 17 additions and 1 deletions
|
|
@ -1186,7 +1186,15 @@ const test_targets = blk: {
|
||||||
.use_lld = false,
|
.use_lld = false,
|
||||||
},
|
},
|
||||||
|
|
||||||
// macOS Targets
|
// Darwin Targets
|
||||||
|
|
||||||
|
.{
|
||||||
|
.target = .{
|
||||||
|
.cpu_arch = .aarch64,
|
||||||
|
.os_tag = .maccatalyst,
|
||||||
|
.abi = .none,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
.{
|
.{
|
||||||
.target = .{
|
.target = .{
|
||||||
|
|
@ -1208,6 +1216,14 @@ const test_targets = blk: {
|
||||||
.strip = true,
|
.strip = true,
|
||||||
},
|
},
|
||||||
|
|
||||||
|
.{
|
||||||
|
.target = .{
|
||||||
|
.cpu_arch = .x86_64,
|
||||||
|
.os_tag = .maccatalyst,
|
||||||
|
.abi = .none,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
.{
|
.{
|
||||||
.target = .{
|
.target = .{
|
||||||
.cpu_arch = .x86_64,
|
.cpu_arch = .x86_64,
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue