authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2023-03-14 21:02:52-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2023-03-15 10:48:15-07:00
log5c6adbeb3931c209c651239cffb60831bcf02949
tree6ec05d7fe6c87db57a1657d00ebe2499b37b59db
parent21b544a90a45cbac02c226ff7082241c2237ffdf

test-c-abi: disable LTO on more targets


1 files changed, 1 insertions(+), 1 deletions(-)

test/tests.zig+1-1
......@@ -1043,7 +1043,7 @@ pub fn addCAbiTests(b: *std.Build, skip_non_native: bool, skip_release: bool) *S
10431043 // test-c-abi should test both with LTO on and with LTO off. Only
10441044 // some combinations are passing currently:
10451045 // https://github.com/ziglang/zig/issues/14908
1046 if (c_abi_target.isWindows() and (c_abi_target.getCpuArch() == .x86 or builtin.target.os.tag == .linux)) {
1046 if (c_abi_target.isWindows()) {
10471047 test_step.want_lto = false;
10481048 }
10491049