Skip to content

Building dpdk

Ayush Kumar edited this page Oct 25, 2019 · 2 revisions

Building dpdk-19.08

Download dpdk-19.08 tar.gz from dpdk-core download. Extract using

tar xJf dpdk-19.08.tar.xz

Now select the toolchain according to the machine. The dpdk toolchain variants are of this type.

ARCH-MACHINE-EXECENV-TOOLCHAIN 

Now install the dpdk toolchain like

make install T=x86_64-native-linux-gcc

Possible error

numa.h:No such File or directory
To remove the error just install
sudo apt-get install libnuma-dev 

Now, enter the directory and use make to build dpdk

cd x86_64-native-linux-gcc
make
Clone this wiki locally