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 3A5D1A04AF; Wed, 6 Nov 2019 20:41:10 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 675C21E911; Wed, 6 Nov 2019 20:41:09 +0100 (CET) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id B40F71E8AD for ; Wed, 6 Nov 2019 20:41:07 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga102.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 06 Nov 2019 11:41:06 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.68,275,1569308400"; d="scan'208";a="214351687" Received: from unknown (HELO localhost.ch.intel.com) ([10.2.51.141]) by orsmga002.jf.intel.com with ESMTP; 06 Nov 2019 11:41:04 -0800 From: Rahul Shah To: cristian.dumitrescu@intel.com Cc: dev@dpdk.org Date: Tue, 5 Nov 2019 12:42:10 -0700 Message-Id: <20191105194210.5222-1-rahul.r.shah@intel.com> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [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" The port library should be build after eventdev library. Fixes: 5d92c4e5 ("port: add eventdev port type") Signed-off-by: Rahul Shah --- lib/Makefile | 1 + 1 file changed, 1 insertion(+) 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 := librte_eal librte_mbuf librte_ethdev DIRS-$(CONFIG_RTE_LIBRTE_PORT) += librte_port DEPDIRS-librte_port := librte_eal librte_mempool librte_mbuf librte_ethdev DEPDIRS-librte_port += librte_ip_frag librte_sched +DEPDIRS-librte_port += librte_eventdev ifeq ($(CONFIG_RTE_LIBRTE_KNI),y) DEPDIRS-librte_port += librte_kni endif -- 2.20.1