From d034f6a7e02e83e05fd3419b9342285ca3b1cac0 Mon Sep 17 00:00:00 2001 From: Darren Foo Date: Mon, 25 Mar 2024 18:37:46 -0700 Subject: [PATCH] remove llvm-12-dev from debian package dependency --- debian/control | 2 +- docker/Dockerfile.ubuntu | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/control b/debian/control index 94d1c85f83b3..6cb7d1863e16 100644 --- a/debian/control +++ b/debian/control @@ -20,7 +20,7 @@ Package: libbcc Architecture: any Provides: libbpfcc, libbpfcc-dev Conflicts: libbpfcc, libbpfcc-dev -Depends: libc6, libstdc++6, libelf1, llvm-12-dev +Depends: libc6, libstdc++6, libelf1 # add 'libdebuginfod1' to Depends if built with libdebuginfod support Description: Shared Library for BPF Compiler Collection (BCC) Shared Library for BPF Compiler Collection to control BPF programs diff --git a/docker/Dockerfile.ubuntu b/docker/Dockerfile.ubuntu index a6afd969d941..04510c20f54e 100644 --- a/docker/Dockerfile.ubuntu +++ b/docker/Dockerfile.ubuntu @@ -23,7 +23,7 @@ COPY --from=builder /root/bcc/*.deb /root/bcc/ RUN \ apt-get update -y && \ - DEBIAN_FRONTEND=noninteractive apt-get install -y python3 python3-pip python-is-python3 binutils libelf1 kmod llvm-12-dev && \ + DEBIAN_FRONTEND=noninteractive apt-get install -y python3 python3-pip python-is-python3 binutils libelf1 kmod && \ pip3 install dnslib cachetools pyelftools && \ dpkg -i /root/bcc/*.deb && \ apt-get clean