From 9e4375dbecd6b0470e3b200d1649db0a33f5162e Mon Sep 17 00:00:00 2001 From: Christian Deacon Date: Tue, 6 Jun 2023 21:20:57 +0000 Subject: [PATCH] Update README with more information since LibXDP move. --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0c654fc..c160955 100644 --- a/README.md +++ b/README.md @@ -129,7 +129,13 @@ Before building, ensure the `libconfig-dev` package is installed along with nece ```bash # Install dependencies. -apt-get install libconfig-dev llvm clang libelf-dev build-essential -y +apt install -y libconfig-dev llvm clang libelf-dev build-essential + +# Install dependencies for building LibXDP. +apt install -y libpcap-dev m4 gcc-multilib + +# You need tools for your kernel since we need BPFTool. If this doesn't work, I'd suggest building BPFTool from source (https://github.com/libbpf/bpftool). +apt install -y linux-tools-$(uname -r) ``` You can use `git` and `make` to build this project. The following should work: