aboutsummaryrefslogtreecommitdiffstats
path: root/resources/libraries/bash/function
diff options
context:
space:
mode:
authorJuraj Linkeš <juraj.linkes@pantheon.tech>2021-08-23 14:57:37 +0200
committerJuraj Linkeš <juraj.linkes@pantheon.tech>2021-08-23 15:59:50 +0200
commitd242783b0455525c2b07e728fb28b245814dcae6 (patch)
treeed9f3e22cc660d0f68a8993f64c6ad09eedc6ab7 /resources/libraries/bash/function
parentc3e077dcdad7e0094ca2b0104add1988f2663447 (diff)
DPDK bump to v21.05 and c_args fix
Fixes: c849edfc256d ("DPDK build: fix l3fwd build and update Meson opts") Change-Id: I4b50a8f3cdc5aa4bd20ce99d477fdaf1087fcac3 Signed-off-by: Juraj Linkeš <juraj.linkes@pantheon.tech>
Diffstat (limited to 'resources/libraries/bash/function')
-rw-r--r--resources/libraries/bash/function/dpdk.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/resources/libraries/bash/function/dpdk.sh b/resources/libraries/bash/function/dpdk.sh
index ea7871bed7..491f03eec0 100644
--- a/resources/libraries/bash/function/dpdk.sh
+++ b/resources/libraries/bash/function/dpdk.sh
@@ -90,7 +90,8 @@ function dpdk_compile () {
meson_options="-Dexamples=l3fwd "
# i40e specific options
- meson_options="${meson_options} -Dc_args=RTE_LIBRTE_I40E_16BYTE_RX_DESC=y"
+ meson_options="${meson_options} \
+ -Dc_args=-DRTE_LIBRTE_I40E_16BYTE_RX_DESC=y"
# Configure generic build - the same used by VPP
meson_options="${meson_options} -Dplatform=generic"