Disable LTO with Clang on riscv64

For LTO to work with Clang we need gold linker, which is not ported to
riscv64.

Signed-off-by: David Abdurachmanov <davidlt@rivosinc.com>
This commit is contained in:
David Abdurachmanov 2023-04-03 14:38:07 +03:00
parent 88d068bc75
commit f4aa489194
Signed by: davidlt
GPG Key ID: 8B7F1DA0E2C9FDBB
2 changed files with 9 additions and 1 deletions

5
macros
View File

@ -363,7 +363,12 @@ print(result)
# way we can detect installing an unusable .o/.a file. This is on the TODO
# list for F34.
%_gcc_lto_cflags -flto=auto -ffat-lto-objects
%ifnarch riscv64
%_clang_lto_cflags -flto=thin
%else
# riscv64 does not have ld.gold support needed for LTO with Clang.
%_clang_lto_cflags %{nil}
%endif
%_lto_cflags %{expand:%%{_%{toolchain}_lto_cflags}}
# Default fortification level.

View File

@ -9,7 +9,7 @@
Summary: Red Hat specific rpm configuration files
Name: redhat-rpm-config
Version: %{baserelease}
Release: 1.0.riscv64%{?dist}
Release: 1.1.riscv64%{?dist}
# No version specified.
License: GPL+
URL: https://src.fedoraproject.org/rpms/redhat-rpm-config
@ -252,6 +252,9 @@ install -p -m 644 -t %{buildroot}%{_rpmluadir}/fedora/srpm forge.lua
%doc buildflags.md
%changelog
* Mon Apr 03 2023 David Abdurachmanov <davidlt@rivosinc.com> - 252-1.1.riscv64
- Set %%_clang_lto_cflags to %%{nil} on riscv64 to disable LTO with Clang
* Wed Mar 15 2023 David Abdurachmanov <davidlt@rivosinc.com> - 252-1.0.riscv64
- Add riscv64 to gap supported arch list
- Add riscv64 to nodejs supported arch list