mirror of
https://github.com/ziglang/zig.git
synced 2026-02-17 23:10:09 +00:00
disable failing test: standalone.shared_library on aarch64-windows
Regressed by LLVM 17 Tracked by #16959
This commit is contained in:
parent
e36ec537f2
commit
e04bb4c007
@ -4,6 +4,13 @@ pub fn build(b: *std.Build) void {
|
||||
const test_step = b.step("test", "Test it");
|
||||
b.default_step = test_step;
|
||||
|
||||
if (@import("builtin").os.tag == .windows and
|
||||
@import("builtin").cpu.arch == .aarch64)
|
||||
{
|
||||
// https://github.com/ziglang/zig/issues/16959
|
||||
return;
|
||||
}
|
||||
|
||||
const optimize: std.builtin.OptimizeMode = .Debug;
|
||||
const target: std.zig.CrossTarget = .{};
|
||||
const lib = b.addSharedLibrary(.{
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user