meson build cannot find the header rte_eth_bond.h when build DPDK first time or never installed DPDK lib after build via meson/ninja.
Because the corresponding header directory isn't included after enabled RTE_LIBRTE_PMD_BOND macro. Add the header file location and link library to meson.build of test-pmd Signed-off-by: SteveX Yang <stevex.y...@intel.com> --- app/test-pmd/meson.build | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/app/test-pmd/meson.build b/app/test-pmd/meson.build index ea56e547b..db0ff02eb 100644 --- a/app/test-pmd/meson.build +++ b/app/test-pmd/meson.build @@ -4,6 +4,11 @@ # override default name to drop the hyphen name = 'testpmd' cflags += '-Wno-deprecated-declarations' + +if dpdk_conf.has('RTE_LIBRTE_BOND_PMD') + cflags += '-I' + meson.source_root() + '/drivers/net/bonding' +endif + sources = files('5tswap.c', 'cmdline.c', 'cmdline_flow.c', @@ -25,6 +30,11 @@ sources = files('5tswap.c', 'util.c') deps += ['ethdev', 'gro', 'gso', 'cmdline', 'metrics', 'meter', 'bus_pci'] + +if dpdk_conf.has('RTE_LIBRTE_BOND_PMD') + deps += 'pmd_bond' +endif + if dpdk_conf.has('RTE_LIBRTE_PDUMP') deps += 'pdump' endif -- 2.17.1