Commit c546ddb3ed
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" },