From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: Re: [PATCH v8 2/2] app/test_pmd: add tests for new API's Date: Wed, 12 Oct 2016 17:11:51 +0200 Message-ID: <2251153.ZmgGxBf8Fs@xps13> References: <1475858784-5303-1-git-send-email-bernard.iremonger@intel.com> <1476284596-30571-3-git-send-email-bernard.iremonger@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit Cc: dev@dpdk.org, rahul.r.shah@intel.com, wenzhuo.lu@intel.com, az5157@att.com, pablo.de.lara.guarch@intel.com To: Bernard Iremonger Return-path: Received: from mail-lf0-f49.google.com (mail-lf0-f49.google.com [209.85.215.49]) by dpdk.org (Postfix) with ESMTP id 01D272B88 for ; Wed, 12 Oct 2016 17:11:55 +0200 (CEST) Received: by mail-lf0-f49.google.com with SMTP id x79so82728467lff.0 for ; Wed, 12 Oct 2016 08:11:55 -0700 (PDT) In-Reply-To: <1476284596-30571-3-git-send-email-bernard.iremonger@intel.com> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 2016-10-12 16:03, Bernard Iremonger: > --- a/app/test-pmd/Makefile > +++ b/app/test-pmd/Makefile > @@ -58,6 +58,17 @@ SRCS-y += csumonly.c > SRCS-y += icmpecho.c > SRCS-$(CONFIG_RTE_LIBRTE_IEEE1588) += ieee1588fwd.c > > +ifeq ($(CONFIG_RTE_BUILD_SHARED_LIB),n) > +LDLIBS-$(CONFIG_RTE_LIBRTE_IXGBE_PMD) += -lrte_pmd_ixgbe > +endif > + > +ifeq ($(CONFIG_RTE_BUILD_SHARED_LIB),y) > +ifeq ($(CONFIG_RTE_LIBRTE_IXGBE_PMD),y) > +LDLIBS += -lrte_pmd_ixgbe > +endif > +endif Sorry if I miss something, but I thought it was enough to do: LDLIBS-$(CONFIG_RTE_LIBRTE_IXGBE_PMD) += -lrte_pmd_ixgbe