mirror of
https://github.com/ziglang/zig.git
synced 2024-11-24 21:30:14 +00:00
Compilation: Disable LTO for all ILP32-on-LP64 ABIs.
Extension of 3a6a8b8aa5
to all similar ABIs. The
LLD issue affects them all.
This commit is contained in:
parent
a703b85c7c
commit
e6d2e16413
@ -295,10 +295,16 @@ pub fn resolve(options: Options) ResolveError!Config {
|
||||
if (!options.any_c_source_files) break :b false;
|
||||
|
||||
// https://github.com/llvm/llvm-project/pull/116537
|
||||
if (target.cpu.arch.isMIPS64()) switch (target.abi) {
|
||||
.gnuabin32, .muslabin32 => break :b false,
|
||||
switch (target.abi) {
|
||||
.gnuabin32,
|
||||
.gnuilp32,
|
||||
.gnux32,
|
||||
.ilp32,
|
||||
.muslabin32,
|
||||
.muslx32,
|
||||
=> break :b false,
|
||||
else => {},
|
||||
};
|
||||
}
|
||||
|
||||
if (target.cpu.arch.isRISCV()) {
|
||||
// Clang and LLVM currently don't support RISC-V target-abi for LTO.
|
||||
|
Loading…
Reference in New Issue
Block a user