disable standalone coff_dwarf test on aarch64-windows

See tracking issue #18427
This commit is contained in:
Andrew Kelley 2024-01-01 19:45:34 -07:00
parent 2b63ba31e9
commit c546ddb3ed

View File

@ -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" },