| author | |
| committer | |
| log | e66e404d6156111ab58c23a30cbd126aefdea1f6 |
| tree | 81e999140c3773e8836e8ac9119b9ebf52616a92 |
| parent | 6ba7d0c435180b47280a2d9b9043dd71ed0c7c87 |
3 files changed, 3 insertions(+), 5 deletions(-)
test/standalone/c_compiler/build.zig+1-1| ... | @@ -5,7 +5,7 @@ pub fn build(b: *std.Build) void { | ... | @@ -5,7 +5,7 @@ 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) { | 8 | if (builtin.os.tag == .windows) { |
| 9 | // https://github.com/ziglang/zig/issues/16965 | 9 | // https://github.com/ziglang/zig/issues/16965 |
| 10 | return; | 10 | return; |
| 11 | } | 11 | } |
test/standalone/load_dynamic_library/build.zig+1-1| ... | @@ -10,7 +10,7 @@ pub fn build(b: *std.Build) void { | ... | @@ -10,7 +10,7 @@ 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) { | 13 | if (builtin.os.tag == .windows) { |
| 14 | // https://github.com/ziglang/zig/issues/16960 | 14 | // https://github.com/ziglang/zig/issues/16960 |
| 15 | return; | 15 | return; |
| 16 | } | 16 | } |
test/standalone/shared_library/build.zig+1-3| ... | @@ -4,9 +4,7 @@ pub fn build(b: *std.Build) void { | ... | @@ -4,9 +4,7 @@ pub fn build(b: *std.Build) void { |
| 4 | const test_step = b.step("test", "Test it"); | 4 | const test_step = b.step("test", "Test it"); |
| 5 | b.default_step = test_step; | 5 | b.default_step = test_step; |
| 6 | 6 | ||
| 7 | if (@import("builtin").os.tag == .windows and | 7 | if (@import("builtin").os.tag == .windows) { |
| 8 | @import("builtin").cpu.arch == .aarch64) | ||
| 9 | { | ||
| 10 | // https://github.com/ziglang/zig/issues/16959 | 8 | // https://github.com/ziglang/zig/issues/16959 |
| 11 | return; | 9 | return; |
| 12 | } | 10 | } |