From f14556f77b7af6f6f74e011b4f12112b3a183a63 Mon Sep 17 00:00:00 2001 From: Nikita Popov Date: Mon, 11 Nov 2024 13:31:41 +0000 Subject: [PATCH] Don't install binutils-gold on RHEL 8 This subpackage is only available since RHEL 9. --- llvm.spec | 2 ++ 1 file changed, 2 insertions(+) diff --git a/llvm.spec b/llvm.spec index f110677..b212d21 100644 --- a/llvm.spec +++ b/llvm.spec @@ -293,8 +293,10 @@ BuildRequires: python%{python3_pkgversion}-myst-parser BuildRequires: multilib-rpm-config %if %{with gold} BuildRequires: binutils-devel +%if %{undefined rhel} || 0%{?rhel} > 8 BuildRequires: binutils-gold %endif +%endif %ifarch %{valgrind_arches} # Enable extra functionality when run the LLVM JIT under valgrind. BuildRequires: valgrind-devel