From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id ADFD0A034E; Thu, 7 Nov 2019 16:22:56 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 871F41BF71; Thu, 7 Nov 2019 16:22:56 +0100 (CET) Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id 17DC81BF67 for ; Thu, 7 Nov 2019 16:22:53 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by fmsmga104.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 07 Nov 2019 07:22:53 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.68,278,1569308400"; d="scan'208";a="402769193" Received: from irsmsx102.ger.corp.intel.com ([163.33.3.155]) by fmsmga005.fm.intel.com with ESMTP; 07 Nov 2019 07:22:52 -0800 Received: from irsmsx108.ger.corp.intel.com ([169.254.11.131]) by IRSMSX102.ger.corp.intel.com ([169.254.2.40]) with mapi id 14.03.0439.000; Thu, 7 Nov 2019 15:22:51 +0000 From: "Dumitrescu, Cristian" To: "Shah, Rahul R" CC: "dev@dpdk.org" Thread-Topic: [PATCH v2] port: fix library build order dependency Thread-Index: AQHVlXmQ9Yf92PpcQ06+4qjHktoknKd/013w Date: Thu, 7 Nov 2019 15:22:51 +0000 Message-ID: <3EB4FA525960D640B5BDFFD6A3D891268E95D084@IRSMSX108.ger.corp.intel.com> References: <20191106144320.30600-1-rahul.r.shah@intel.com> In-Reply-To: <20191106144320.30600-1-rahul.r.shah@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiYTY0ZTBiNmQtNmEwZC00OThmLTk4NzEtMjg1OWU0MjA0MDg3IiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX05UIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE3LjEwLjE4MDQuNDkiLCJUcnVzdGVkTGFiZWxIYXNoIjoiQldmd3ZJZmp3Z2RCRno0SlFNVmthS29ER0ZtZ045akFWQWNiUWRqd3VqNXdZZzBFWjlRY3ZaK1M3ekJnTmFWMyJ9 x-ctpclassification: CTP_NT dlp-product: dlpe-windows dlp-version: 11.2.0.6 dlp-reaction: no-action x-originating-ip: [163.33.239.182] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v2] port: fix library build order 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" > -----Original Message----- > From: Shah, Rahul R > Sent: Wednesday, November 6, 2019 2:43 PM > To: Dumitrescu, Cristian > Cc: dev@dpdk.org > Subject: [PATCH v2] port: fix library build order dependency >=20 > The port library should be build after eventdev library. >=20 > Fixes: 5d92c4e5 ("port: add eventdev port type") >=20 > Signed-off-by: Rahul Shah > --- > lib/Makefile | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) >=20 > diff --git a/lib/Makefile b/lib/Makefile > index 5d04ab915..1ff00ba8c 100644 > --- a/lib/Makefile > +++ b/lib/Makefile > @@ -89,7 +89,7 @@ DIRS-$(CONFIG_RTE_LIBRTE_DISTRIBUTOR) +=3D > librte_distributor > DEPDIRS-librte_distributor :=3D librte_eal librte_mbuf librte_ethdev > DIRS-$(CONFIG_RTE_LIBRTE_PORT) +=3D librte_port > DEPDIRS-librte_port :=3D librte_eal librte_mempool librte_mbuf librte_et= hdev > -DEPDIRS-librte_port +=3D librte_ip_frag librte_sched > +DEPDIRS-librte_port +=3D librte_ip_frag librte_sched librte_eventdev > ifeq ($(CONFIG_RTE_LIBRTE_KNI),y) > DEPDIRS-librte_port +=3D librte_kni > endif > -- > 2.20.1 Acked-by: Cristian Dumitrescu