From patchwork Thu Feb 22 22:53:07 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Monjalon X-Patchwork-Id: 35366 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id B8D554C7A; Thu, 22 Feb 2018 23:54:17 +0100 (CET) Received: from out2-smtp.messagingengine.com (out2-smtp.messagingengine.com [66.111.4.26]) by dpdk.org (Postfix) with ESMTP id E43E44C78; Thu, 22 Feb 2018 23:54:16 +0100 (CET) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 7F62720DBC; Thu, 22 Feb 2018 17:54:16 -0500 (EST) Received: from frontend2 ([10.202.2.161]) by compute1.internal (MEProxy); Thu, 22 Feb 2018 17:54:16 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= cc:date:from:in-reply-to:message-id:references:subject:to :x-me-sender:x-me-sender:x-sasl-enc; s=mesmtp; bh=zitmCEaq+qL0nq Wmf9zCgYJXlX5ppR5eX9S7XMkoRU0=; b=J+LymI05xNUtBGnjG01T4q7gKczIKV QKhIKOPGXZW4ZnoYVwmBu0LYuoU/ojDerBE/mpjh2spWOCo1c3MXj+VQWqbmB9Fq cWHRdPRiYcb6CTyO5lBhive0vot6xrGedltCHGxgdTuYkhWMNLtHx7aOHiIhFV7V EjUTdboCNEcmo= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:date:from:in-reply-to:message-id :references:subject:to:x-me-sender:x-me-sender:x-sasl-enc; s= fm2; bh=zitmCEaq+qL0nqWmf9zCgYJXlX5ppR5eX9S7XMkoRU0=; b=PtBJVmiD pDQOkdQtUKeAI73hX42lY78hNyidgoj46UnAgY6egr1z2Ea4n/6mE6HTWn00fhX+ 95pgruGvV8UabhH0v5Hfae53jrA8v+NIjAuswLS6vj9sBbhjQ6dGWbhorkGzRu7c bHbPvbK1Udaz9q6AM0NzJYcvnDtu0+IcPCfwu3mo60mdw6giTUbjCaDo9vHVXlrF geJ4cUWppCk/BKqGSolwllmzEcp8vVfWrBOjEjHqcEu+yyqXiI1MN5dAw9tbDT/J ZfFDbg2ZhX+zzmKKo7lP7fZjYCZSHWpKi1EVdFp0ggveZuf56uji90PKsZ8S729i 8gSJkKYm0QMXug== X-ME-Sender: Received: from xps.monjalon.net (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id BCF9724651; Thu, 22 Feb 2018 17:54:15 -0500 (EST) From: Thomas Monjalon To: hemant.agrawal@nxp.com, mvarlese@suse.de Cc: dev@dpdk.org, stable@dpdk.org Date: Thu, 22 Feb 2018 23:53:07 +0100 Message-Id: <20180222225308.16972-1-thomas@monjalon.net> X-Mailer: git-send-email 2.15.1 In-Reply-To: <1519329652.2458.5.camel@suse.de> References: <1519329652.2458.5.camel@suse.de> Subject: [dpdk-dev] [PATCH 1/2] app/testpmd: fix DPAA shared library dependency X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list 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 Acked-by: Hemant Agrawal --- 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)