app/testpmd: fix DPAA shared library dependency
The dynamic link is broken for ARM platform because the dependencies of the DPAA PMD are not declared. Fixes: 83c82e15e1c0 ("app/testpmd: support loopback config for DPAA") Cc: stable@dpdk.org Reported-by: Marco Varlese <mvarlese@suse.de> Signed-off-by: Thomas Monjalon <thomas@monjalon.net> Signed-off-by: Hemant Agrawal <hemant.agrawal@nxp.com>
This commit is contained in:
parent
da07658d58
commit
3fcdd12546
@ -44,8 +44,10 @@ ifeq ($(CONFIG_RTE_LIBRTE_PMD_BOND),y)
|
|||||||
LDLIBS += -lrte_pmd_bond
|
LDLIBS += -lrte_pmd_bond
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(CONFIG_RTE_LIBRTE_DPAA_PMD),y)
|
ifeq ($(CONFIG_RTE_LIBRTE_DPAA_BUS)$(CONFIG_RTE_LIBRTE_DPAA_PMD),yy)
|
||||||
LDLIBS += -lrte_pmd_dpaa
|
LDLIBS += -lrte_pmd_dpaa
|
||||||
|
LDLIBS += -lrte_bus_dpaa
|
||||||
|
LDLIBS += -lrte_mempool_dpaa
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(CONFIG_RTE_LIBRTE_IXGBE_PMD),y)
|
ifeq ($(CONFIG_RTE_LIBRTE_IXGBE_PMD),y)
|
||||||
|
@ -60,7 +60,7 @@
|
|||||||
#include <rte_eth_bond.h>
|
#include <rte_eth_bond.h>
|
||||||
#include <rte_eth_bond_8023ad.h>
|
#include <rte_eth_bond_8023ad.h>
|
||||||
#endif
|
#endif
|
||||||
#ifdef RTE_LIBRTE_DPAA_PMD
|
#if defined RTE_LIBRTE_DPAA_BUS && defined RTE_LIBRTE_DPAA_PMD
|
||||||
#include <rte_pmd_dpaa.h>
|
#include <rte_pmd_dpaa.h>
|
||||||
#endif
|
#endif
|
||||||
#ifdef RTE_LIBRTE_IXGBE_PMD
|
#ifdef RTE_LIBRTE_IXGBE_PMD
|
||||||
@ -12861,7 +12861,7 @@ cmd_set_tx_loopback_parsed(
|
|||||||
if (ret == -ENOTSUP)
|
if (ret == -ENOTSUP)
|
||||||
ret = rte_pmd_bnxt_set_tx_loopback(res->port_id, is_on);
|
ret = rte_pmd_bnxt_set_tx_loopback(res->port_id, is_on);
|
||||||
#endif
|
#endif
|
||||||
#ifdef RTE_LIBRTE_DPAA_PMD
|
#if defined RTE_LIBRTE_DPAA_BUS && defined RTE_LIBRTE_DPAA_PMD
|
||||||
if (ret == -ENOTSUP)
|
if (ret == -ENOTSUP)
|
||||||
ret = rte_pmd_dpaa_set_tx_loopback(res->port_id, is_on);
|
ret = rte_pmd_dpaa_set_tx_loopback(res->port_id, is_on);
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user