Skip to content

Commit

Permalink
doc: update the README for meson build
Browse files Browse the repository at this point in the history
update the steps for building with meson-ninja for DPDK and
install path.

Signed-off-by: Vipin Varghese <[email protected]>
  • Loading branch information
vipinpv85 authored and ywc689 committed Jun 24, 2021
1 parent f10db1e commit b8da933
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,18 @@ $ ...
### DPDK build and install

Now build DPDK and export `RTE_SDK` env variable for DPDK app (DPVS).
1. Using meson-ninja for building DPDK libraries. The `dpdk.mk` checks for presence of libdpdk

```bash
$ cd dpdk-stable-18.11.11
$ mkdir [user desired install folder - dpdklib]
$ mkdir [user desired build folder - dpdkbuild]
$ meson -Dprefix=[dpdklib] dpdkbuild
$ ninja -C dpdkbuild
$ cd dpdkbuild; ninja install
```

2. Using Makefile for build DPDK linraries and export `RTE_SDK` env variable for DPDK app (DPVS).

```bash
$ cd dpdk-stable-18.11.2/
Expand Down

0 comments on commit b8da933

Please sign in to comment.