zig

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

commit 3a6a8b8aa540413d099a6f41a0d8f882f22acb45 (tree)
parent 7266d4497e7879491c4394bb01e3057d75823cea
Author: Alex Rønne Petersen <alex@alexrp.com>
Date:   Sun, 17 Nov 2024 10:52:40 +0100

Compilation: Disable LTO for mips n32.

See: https://github.com/llvm/llvm-project/pull/116537

Diffstat:
Msrc/Compilation/Config.zig | 6++++++
1 file changed, 6 insertions(+), 0 deletions(-)

diff --git a/src/Compilation/Config.zig b/src/Compilation/Config.zig @@ -294,6 +294,12 @@ pub fn resolve(options: Options) ResolveError!Config { if (options.lto) |x| break :b x; 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, + else => {}, + }; + if (target.cpu.arch.isRISCV()) { // Clang and LLVM currently don't support RISC-V target-abi for LTO. // Compiling with LTO may fail or produce undesired results.