| author | |
| committer | |
| log | 31ff6e3fc11c490cc72b726ea22042ea344a18a3 |
| tree | 325254ef5b80f6cb26836bd9282bd45d289e0dd0 |
| parent | e04bb4c00787e778ac1f7baf63588f1c01b84a81 |
Regressed by LLVM 17
Tracked by #169601 files changed, 5 insertions(+), 0 deletions(-)
test/standalone/load_dynamic_library/build.zig+5| ... | ... | @@ -10,6 +10,11 @@ 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) { | |
| 14 | // https://github.com/ziglang/zig/issues/16960 | |
| 15 | return; | |
| 16 | } | |
| 17 | ||
| 13 | 18 | const lib = b.addSharedLibrary(.{ |
| 14 | 19 | .name = "add", |
| 15 | 20 | .root_source_file = .{ .path = "add.zig" }, |