From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: [PATCH 1/2] app/testpmd: fix DPAA shared library dependency Date: Thu, 22 Feb 2018 23:53:07 +0100 Message-ID: <20180222225308.16972-1-thomas@monjalon.net> References: <1519329652.2458.5.camel@suse.de> Cc: dev@dpdk.org, stable@dpdk.org To: hemant.agrawal@nxp.com, mvarlese@suse.de Return-path: In-Reply-To: <1519329652.2458.5.camel@suse.de> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 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 Signed-off-by: Thomas Monjalon --- app/test-pmd/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/test-pmd/Makefile b/app/test-pmd/Makefile index ed588ab6d..31646c113 100644 --- a/app/test-pmd/Makefile +++ b/app/test-pmd/Makefile @@ -46,6 +46,8 @@ endif ifeq ($(CONFIG_RTE_LIBRTE_DPAA_PMD),y) LDLIBS += -lrte_pmd_dpaa +LDLIBS += -lrte_bus_dpaa +LDLIBS += -lrte_mempool_dpaa endif ifeq ($(CONFIG_RTE_LIBRTE_IXGBE_PMD),y) -- 2.15.1