| author | |
| committer | |
| log | 3be8490d826996dae4ce9c5564d0b2076b906f1f |
| tree | 81e999140c3773e8836e8ac9119b9ebf52616a92 |
| parent | 1a6ba7e1cc4d26910f75141b88079de8f7ffc1aa |
| parent | e66e404d6156111ab58c23a30cbd126aefdea1f6 |
| signature |
CI: update windows tarballs5 files changed, 5 insertions(+), 7 deletions(-)
ci/x86_64-windows-debug.ps1+1-1| ... | ... | @@ -1,5 +1,5 @@ |
| 1 | 1 | $TARGET = "$($Env:ARCH)-windows-gnu" |
| 2 | $ZIG_LLVM_CLANG_LLD_NAME = "zig+llvm+lld+clang-$TARGET-0.12.0-dev.203+d3bc1cfc4" | |
| 2 | $ZIG_LLVM_CLANG_LLD_NAME = "zig+llvm+lld+clang-$TARGET-0.12.0-dev.888+130227492" | |
| 3 | 3 | $MCPU = "baseline" |
| 4 | 4 | $ZIG_LLVM_CLANG_LLD_URL = "https://ziglang.org/deps/$ZIG_LLVM_CLANG_LLD_NAME.zip" |
| 5 | 5 | $PREFIX_PATH = "$(Get-Location)\$ZIG_LLVM_CLANG_LLD_NAME" |
ci/x86_64-windows-release.ps1+1-1| ... | ... | @@ -1,5 +1,5 @@ |
| 1 | 1 | $TARGET = "$($Env:ARCH)-windows-gnu" |
| 2 | $ZIG_LLVM_CLANG_LLD_NAME = "zig+llvm+lld+clang-$TARGET-0.12.0-dev.203+d3bc1cfc4" | |
| 2 | $ZIG_LLVM_CLANG_LLD_NAME = "zig+llvm+lld+clang-$TARGET-0.12.0-dev.888+130227492" | |
| 3 | 3 | $MCPU = "baseline" |
| 4 | 4 | $ZIG_LLVM_CLANG_LLD_URL = "https://ziglang.org/deps/$ZIG_LLVM_CLANG_LLD_NAME.zip" |
| 5 | 5 | $PREFIX_PATH = "$(Get-Location)\$ZIG_LLVM_CLANG_LLD_NAME" |
test/standalone/c_compiler/build.zig+1-1| ... | ... | @@ -5,7 +5,7 @@ pub fn build(b: *std.Build) void { |
| 5 | 5 | const test_step = b.step("test", "Test it"); |
| 6 | 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 | 9 | // https://github.com/ziglang/zig/issues/16965 |
| 10 | 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 | 10 | |
| 11 | 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 | 14 | // https://github.com/ziglang/zig/issues/16960 |
| 15 | 15 | return; |
| 16 | 16 | } |
test/standalone/shared_library/build.zig+1-3| ... | ... | @@ -4,9 +4,7 @@ pub fn build(b: *std.Build) void { |
| 4 | 4 | const test_step = b.step("test", "Test it"); |
| 5 | 5 | b.default_step = test_step; |
| 6 | 6 | |
| 7 | if (@import("builtin").os.tag == .windows and | |
| 8 | @import("builtin").cpu.arch == .aarch64) | |
| 9 | { | |
| 7 | if (@import("builtin").os.tag == .windows) { | |
| 10 | 8 | // https://github.com/ziglang/zig/issues/16959 |
| 11 | 9 | return; |
| 12 | 10 | } |