Commit c546ddb3ed

Andrew Kelley <andrew@ziglang.org>
2024-01-02 03:45:34
disable standalone coff_dwarf test on aarch64-windows
See tracking issue #18427
1 parent 2b63ba3
Changed files (1)
test
standalone
coff_dwarf
test/standalone/coff_dwarf/build.zig
@@ -11,6 +11,11 @@ pub fn build(b: *std.Build) void {
 
     if (builtin.os.tag != .windows) return;
 
+    if (builtin.cpu.arch == .aarch64) {
+        // https://github.com/ziglang/zig/issues/18427
+        return;
+    }
+
     const exe = b.addExecutable(.{
         .name = "main",
         .root_source_file = .{ .path = "main.zig" },