| ... | @@ -3,6 +3,9 @@ | ... | @@ -3,6 +3,9 @@ |
| 3 | pub fn testAll(b: *Build, build_opts: BuildOptions) *Step { | 3 | pub fn testAll(b: *Build, build_opts: BuildOptions) *Step { |
| 4 | const macho_step = b.step("test-macho", "Run MachO tests"); | 4 | const macho_step = b.step("test-macho", "Run MachO tests"); |
| 5 | | 5 | |
| | 6 | // https://github.com/ziglang/zig/issues/25323 |
| | 7 | if (builtin.os.tag == .freebsd) return macho_step; |
| | 8 | |
| 6 | const x86_64_target = b.resolveTargetQuery(.{ | 9 | const x86_64_target = b.resolveTargetQuery(.{ |
| 7 | .cpu_arch = .x86_64, | 10 | .cpu_arch = .x86_64, |
| 8 | .os_tag = .macos, | 11 | .os_tag = .macos, |