disable failing test: standalone.load_dynamic_library on aarch64-windows

Regressed by LLVM 17

Tracked by #16960
This commit is contained in:
Andrew Kelley 2023-08-25 12:37:39 -07:00
parent e04bb4c007
commit 31ff6e3fc1

View File

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