You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
echo "Distribution not detected. Please install libbpf onto your system to use LeMon."
fi
if sudo ldconfig -p | grep -qE "libbpf.so.1"; then
echo "Libbpf library version is < 1.5.0, which is unsupported. Manually installing libbpf 1.5.0..."
tar -xzvf libbpf.tar.gz
cd libbpf/src
STATUS=$(make -j6)
if ((STATUS -eq 2)); then
echo "Error when building libbpf. Please try running make inside the libbpf directory to determine what went wrong and fix it accordingly. You may need to install your kernel's headers to build properly."