diff options
| author | Alex Rønne Petersen <alex@alexrp.com> | 2025-10-25 10:34:48 +0200 |
|---|---|---|
| committer | Alex Rønne Petersen <alex@alexrp.com> | 2025-10-25 12:44:13 +0200 |
| commit | e39b82bf4e7346ada67a0fd49c480db1c6e12260 (patch) | |
| tree | 631cc7115e1e1a84571d998dc72322acbf97bd73 /test/src/ErrorTrace.zig | |
| parent | feb05a716d1ae105cf0e8f9966b6ade7f32dc680 (diff) | |
| download | zig-e39b82bf4e7346ada67a0fd49c480db1c6e12260.tar.gz zig-e39b82bf4e7346ada67a0fd49c480db1c6e12260.zip | |
compiler: avoid using self-hosted backend on x86_64-solaris/illumos
https://github.com/ziglang/zig/issues/25699
Diffstat (limited to 'test/src/ErrorTrace.zig')
| -rw-r--r-- | test/src/ErrorTrace.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/src/ErrorTrace.zig b/test/src/ErrorTrace.zig index 4644661205..3c781e3a3a 100644 --- a/test/src/ErrorTrace.zig +++ b/test/src/ErrorTrace.zig @@ -41,7 +41,7 @@ pub fn addCase(self: *ErrorTrace, case: Case) void { fn shouldTestNonLlvm(target: *const std.Target) bool { return switch (target.cpu.arch) { .x86_64 => switch (target.ofmt) { - .elf => !target.os.tag.isBSD(), + .elf => !target.os.tag.isBSD() and !target.os.tag.isSolarish(), else => false, }, else => false, |
