mirror of
https://github.com/ziglang/zig.git
synced 2026-01-20 22:35:24 +00:00
test: disable test-link macho on FreeBSD
See also d6d1fef. https://github.com/ziglang/zig/issues/25323
This commit is contained in:
parent
62e3d46287
commit
66193e72d3
@ -3,6 +3,9 @@
|
||||
pub fn testAll(b: *Build, build_opts: BuildOptions) *Step {
|
||||
const macho_step = b.step("test-macho", "Run MachO tests");
|
||||
|
||||
// https://github.com/ziglang/zig/issues/25323
|
||||
if (builtin.os.tag == .freebsd) return macho_step;
|
||||
|
||||
const x86_64_target = b.resolveTargetQuery(.{
|
||||
.cpu_arch = .x86_64,
|
||||
.os_tag = .macos,
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user