aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/standalone/coff_dwarf/build.zig3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/standalone/coff_dwarf/build.zig b/test/standalone/coff_dwarf/build.zig
index cd3a53ec8c..d35e744a6c 100644
--- a/test/standalone/coff_dwarf/build.zig
+++ b/test/standalone/coff_dwarf/build.zig
@@ -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,