zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit e6d2e1641363c97f53d4168b319b4dca6224e25e (tree)
parent a703b85c7c213a06a3d758f652cc3137c5f0b60b
Author: Alex Rønne Petersen <alex@alexrp.com>
Date:   Mon, 18 Nov 2024 14:42:53 +0100

Compilation: Disable LTO for all ILP32-on-LP64 ABIs.

Extension of 3a6a8b8aa540413d099a6f41a0d8f882f22acb45 to all similar ABIs. The
LLD issue affects them all.

Diffstat:
Msrc/Compilation/Config.zig | 12+++++++++---
1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/src/Compilation/Config.zig b/src/Compilation/Config.zig @@ -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.