From b9aebde8c7c7386a9333a5f451edf8300e7058d6 Mon Sep 17 00:00:00 2001 From: Jerome Marchand Date: Tue, 5 Nov 2024 18:17:53 +0100 Subject: [PATCH] Explicitely disable blazesym support Resolves: RHEL-65850 Signed-off-by: Jerome Marchand --- bcc.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/bcc.spec b/bcc.spec index 56fcd17..16a77f2 100644 --- a/bcc.spec +++ b/bcc.spec @@ -25,7 +25,7 @@ Name: bcc Version: 0.30.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: BPF Compiler Collection (BCC) License: Apache-2.0 URL: https://github.com/iovisor/bcc @@ -149,7 +149,7 @@ Command line libbpf tools for BPF Compiler Collection (BCC) # take them. %if %{with libbpf_tools} pushd libbpf-tools; -make BPFTOOL=bpftool LIBBPF_OBJ=%{_libdir}/libbpf.a CFLAGS="%{optflags}" LDFLAGS="%{build_ldflags}" +make BPFTOOL=bpftool LIBBPF_OBJ=%{_libdir}/libbpf.a CFLAGS="%{optflags}" LDFLAGS="%{build_ldflags}" USE_BLAZESYM=0 make DESTDIR=./tmp-install prefix= install ( cd tmp-install/bin @@ -263,6 +263,9 @@ cp -a libbpf-tools/tmp-install/bin/* %{buildroot}/%{_sbindir}/ %endif %changelog +* Tue Nov 05 2024 Jerome Marchand - 0.30.0-5 +- Explicitely disable blazesym support (RHEL-65850) + * Tue Oct 29 2024 Jerome Marchand - 0.30.0-4 - Fix LLVM 19 build (RHEL-64925)