diff options
| author | alexrp <alex@alexrp.com> | 2025-09-21 08:47:21 +0200 |
|---|---|---|
| committer | Alex Rønne Petersen <alex@alexrp.com> | 2025-09-22 01:37:32 +0200 |
| commit | 0700ec35bda705fccb61cb3f28734ce11166fda5 (patch) | |
| tree | 1cda0d7385705b69cd59e838584688a3b5607949 /test/src/StackTrace.zig | |
| parent | 4d8dcccbd416ec49bcd681374c90bbe9a11ed5ca (diff) | |
| download | zig-0700ec35bda705fccb61cb3f28734ce11166fda5.tar.gz zig-0700ec35bda705fccb61cb3f28734ce11166fda5.zip | |
compiler: don't use self-hosted backend on any BSD yet
There are some blocking bugs in the self-hosted ELF linker.
Diffstat (limited to 'test/src/StackTrace.zig')
| -rw-r--r-- | test/src/StackTrace.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/src/StackTrace.zig b/test/src/StackTrace.zig index ff3bbe708b..9b51f4e4b2 100644 --- a/test/src/StackTrace.zig +++ b/test/src/StackTrace.zig @@ -45,7 +45,7 @@ fn addCaseInner(self: *StackTrace, config: Config, use_llvm: bool) void { fn shouldTestNonLlvm(target: *const std.Target) bool { return switch (target.cpu.arch) { .x86_64 => switch (target.ofmt) { - .elf => true, + .elf => !target.os.tag.isBSD(), else => false, }, else => false, |
