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 30BD7A034E; Thu, 7 Nov 2019 10:12:04 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id ACCE31E978; Thu, 7 Nov 2019 10:12:03 +0100 (CET) Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by dpdk.org (Postfix) with ESMTP id 98AB61E974 for ; Thu, 7 Nov 2019 10:12:02 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga007.jf.intel.com ([10.7.209.58]) by orsmga104.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 07 Nov 2019 01:12:01 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.68,277,1569308400"; d="scan'208";a="192761285" Received: from irsmsx107.ger.corp.intel.com ([163.33.3.99]) by orsmga007.jf.intel.com with ESMTP; 07 Nov 2019 01:12:01 -0800 Received: from irsmsx108.ger.corp.intel.com ([169.254.11.131]) by IRSMSX107.ger.corp.intel.com ([169.254.10.18]) with mapi id 14.03.0439.000; Thu, 7 Nov 2019 09:12:00 +0000 From: "Dumitrescu, Cristian" To: "Shah, Rahul R" CC: "dev@dpdk.org" Thread-Topic: [PATCH] port: fix library build order dependency Thread-Index: AQHVlNokiC5g8W16e0ikoKsoTg3RP6d/bNrA Date: Thu, 7 Nov 2019 09:11:59 +0000 Message-ID: <3EB4FA525960D640B5BDFFD6A3D891268E95CE7B@IRSMSX108.ger.corp.intel.com> References: <20191105194210.5222-1-rahul.r.shah@intel.com> In-Reply-To: <20191105194210.5222-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: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiYTM1NjJkYzYtOWJlYy00Mzc4LWE2MTAtMWI2OWFhNzJlMDY4IiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX05UIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE3LjEwLjE4MDQuNDkiLCJUcnVzdGVkTGFiZWxIYXNoIjoiXC83VWJnNzRaM3hMdjQxY1NRaVwvbExnZXhBc24xMHg1aDhyUEd4ZHJaU2kyckZUWXUxZ3M3M3ZKR2RQb2lOWFp4In0= 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] 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: Tuesday, November 5, 2019 7:42 PM > To: Dumitrescu, Cristian > Cc: dev@dpdk.org > Subject: [PATCH] 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 | 1 + > 1 file changed, 1 insertion(+) >=20 > diff --git a/lib/Makefile b/lib/Makefile > index 5d04ab915..2c2b80ac3 100644 > --- a/lib/Makefile > +++ b/lib/Makefile > @@ -90,6 +90,7 @@ 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_eventdev > ifeq ($(CONFIG_RTE_LIBRTE_KNI),y) > DEPDIRS-librte_port +=3D librte_kni > endif > -- > 2.20.1 Cosmetically, you might want to squeeze & add librte_eventdev on the line i= mmediately above.