| author | |
| committer | |
| log | e04bb4c00787e778ac1f7baf63588f1c01b84a81 |
| tree | 64626abd9b18515f7794c788cc425c4d596f1ca7 |
| parent | e36ec537f2127f71a2e8c8a207136226c9848fb9 |
Regressed by LLVM 17
Tracked by #169591 files changed, 7 insertions(+), 0 deletions(-)
test/standalone/shared_library/build.zig+7| ... | ... | @@ -4,6 +4,13 @@ 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 | { | |
| 10 | // https://github.com/ziglang/zig/issues/16959 | |
| 11 | return; | |
| 12 | } | |
| 13 | ||
| 7 | 14 | const optimize: std.builtin.OptimizeMode = .Debug; |
| 8 | 15 | const target: std.zig.CrossTarget = .{}; |
| 9 | 16 | const lib = b.addSharedLibrary(.{ |