mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-04-27 19:09:47 +03:00
test: disable coff_dwarf on FreeBSD
https://github.com/ziglang/zig/issues/25471 This is not the only test that aborts like this, nor does it happen only on FreeBSD, but it happens to be disproportionally disruptive on FreeBSD in particular.
This commit is contained in:
@@ -4,6 +4,9 @@ const std = @import("std");
|
||||
pub fn build(b: *std.Build) void {
|
||||
const host = b.graph.host;
|
||||
|
||||
// https://github.com/ziglang/zig/issues/25471
|
||||
if (host.result.os.tag == .freebsd) return;
|
||||
|
||||
switch (host.result.cpu.arch) {
|
||||
.aarch64,
|
||||
.x86,
|
||||
|
||||
Reference in New Issue
Block a user