Explicitely disable blazesym support

Resolves: RHEL-65850

Signed-off-by: Jerome Marchand <jmarchan@redhat.com>
This commit is contained in:
Jerome Marchand 2024-11-05 18:17:53 +01:00
parent fd07f2481a
commit b9aebde8c7

View File

@ -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 <jmarchan@redhat.com> - 0.30.0-5
- Explicitely disable blazesym support (RHEL-65850)
* Tue Oct 29 2024 Jerome Marchand <jmarchan@redhat.com> - 0.30.0-4
- Fix LLVM 19 build (RHEL-64925)