Difference between revisions of "How to install, build and use XDP related packages"

From epsciwiki
Jump to navigation Jump to search
Line 39: Line 39:
  
 
:Follow the instructions in xdp-tools/README.md file for compilation. Note: there is no need to do a git submodule on libbpf.
 
:Follow the instructions in xdp-tools/README.md file for compilation. Note: there is no need to do a git submodule on libbpf.
 
  
 
<blockquote>
 
<blockquote>
 
<pre>
 
<pre>
export DESTDIR=<installation dir>
+
 
export PREFIX=""
+
 
git clone https://github.com/xdp-project/xdp-tools.git
+
 
cd xdp-tools
 
 
</pre>
 
</pre>
 
</blockquote>
 
</blockquote>

Revision as of 23:07, 19 October 2023

PAGE UNDER CONSTRUCTION


There are multiple software packages that need to be downloaded, compiled, and installed for XPD-related code to run

Installing libbpf

1st: install the libelf library
sudo apt-get install -y libelf-dev
2nd: get and install the libbpf related files
export DESTDIR=<installation dir>
export PREFIX=""
git clone https://github.com/libbpf/libbpf.git
cd libbpf
cd src
make install
3rd: get and install the libxpd related files
export DESTDIR=<installation dir>
export PREFIX=""
git clone https://github.com/xdp-project/xdp-tools.git
cd xdp-tools
Follow the instructions in xdp-tools/README.md file for compilation. Note: there is no need to do a git submodule on libbpf.





Clone the repository
git clone --recurse-submodules -b v1.50 --depth 1 --shallow-submodules https://github.com/grpc/grpc
Build the package