| author | |
| committer | |
| log | a8e77b7a059d02bd86d4388b42b8d7b6bef52360 |
| tree | c1b864bc582d481b8821ed92f851c7e67d702787 |
| parent | a0e6d413315e2006bfb11999c7cc4f0a6c272f0e |
| signature |
https://github.com/ziglang/zig/issues/259612 files changed, 6 insertions(+), 0 deletions(-)
test/link/elf.zig+3| ... | ... | @@ -5,6 +5,9 @@ pub fn testAll(b: *Build, build_opts: BuildOptions) *Step { |
| 5 | 5 | // https://github.com/ziglang/zig/issues/25323 |
| 6 | 6 | if (builtin.os.tag == .freebsd) return elf_step; |
| 7 | 7 | |
| 8 | // https://github.com/ziglang/zig/issues/25961 | |
| 9 | if (comptime builtin.cpu.arch.endian() == .big) return elf_step; | |
| 10 | ||
| 8 | 11 | const default_target = b.resolveTargetQuery(.{ |
| 9 | 12 | .cpu_arch = .x86_64, // TODO relax this once ELF linker is able to handle other archs |
| 10 | 13 | .os_tag = .linux, |
test/link/macho.zig+3| ... | ... | @@ -6,6 +6,9 @@ pub fn testAll(b: *Build, build_opts: BuildOptions) *Step { |
| 6 | 6 | // https://github.com/ziglang/zig/issues/25323 |
| 7 | 7 | if (builtin.os.tag == .freebsd) return macho_step; |
| 8 | 8 | |
| 9 | // https://github.com/ziglang/zig/issues/25961 | |
| 10 | if (comptime builtin.cpu.arch.endian() == .big) return macho_step; | |
| 11 | ||
| 9 | 12 | const x86_64_target = b.resolveTargetQuery(.{ |
| 10 | 13 | .cpu_arch = .x86_64, |
| 11 | 14 | .os_tag = .macos, |