| ... | @@ -5,6 +5,11 @@ pub fn build(b: *std.Build) void { | ... | @@ -5,6 +5,11 @@ pub fn build(b: *std.Build) void { |
| 5 | const test_step = b.step("test", "Test it"); | 5 | const test_step = b.step("test", "Test it"); |
| 6 | b.default_step = test_step; | 6 | b.default_step = test_step; |
| 7 | | 7 | |
| | 8 | if (builtin.os.tag == .windows and builtin.cpu.arch == .aarch64) { |
| | 9 | // https://github.com/ziglang/zig/issues/16965 |
| | 10 | return; |
| | 11 | } |
| | 12 | |
| 8 | add(b, test_step, "test_c_Debug", "test_cpp_Debug", .Debug); | 13 | add(b, test_step, "test_c_Debug", "test_cpp_Debug", .Debug); |
| 9 | add(b, test_step, "test_c_ReleaseFast", "test_cpp_ReleaseFast", .ReleaseFast); | 14 | add(b, test_step, "test_c_ReleaseFast", "test_cpp_ReleaseFast", .ReleaseFast); |
| 10 | add(b, test_step, "test_c_ReleaseSmall", "test_cpp_ReleaseSmall", .ReleaseSmall); | 15 | add(b, test_step, "test_c_ReleaseSmall", "test_cpp_ReleaseSmall", .ReleaseSmall); |