mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 14:23:09 +00:00
disable failing test: standalone.load_dynamic_library on aarch64-windows
Regressed by LLVM 17 Tracked by #16960
This commit is contained in:
parent
e04bb4c007
commit
31ff6e3fc1
@ -10,6 +10,11 @@ pub fn build(b: *std.Build) void {
|
|||||||
|
|
||||||
if (builtin.os.tag == .wasi) return;
|
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(.{
|
const lib = b.addSharedLibrary(.{
|
||||||
.name = "add",
|
.name = "add",
|
||||||
.root_source_file = .{ .path = "add.zig" },
|
.root_source_file = .{ .path = "add.zig" },
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user