| ... | @@ -10,6 +10,11 @@ pub fn build(b: *std.Build) void { | ... | @@ -10,6 +10,11 @@ pub fn build(b: *std.Build) void { |
| 10 | | 10 | |
| 11 | if (builtin.os.tag == .wasi) return; | 11 | if (builtin.os.tag == .wasi) return; |
| 12 | | 12 | |
| | 13 | if (builtin.os.tag == .windows and builtin.cpu.arch == .aarch64) { |
| | 14 | // https://github.com/ziglang/zig/issues/16960 |
| | 15 | return; |
| | 16 | } |
| | 17 | |
| 13 | const lib = b.addSharedLibrary(.{ | 18 | const lib = b.addSharedLibrary(.{ |
| 14 | .name = "add", | 19 | .name = "add", |
| 15 | .root_source_file = .{ .path = "add.zig" }, | 20 | .root_source_file = .{ .path = "add.zig" }, |