From patchwork Tue Mar 17 00:48:02 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Kadam, Pallavi" X-Patchwork-Id: 66744 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id E9039A0559; Tue, 17 Mar 2020 01:50:35 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id E59B51C0B6; Tue, 17 Mar 2020 01:50:20 +0100 (CET) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 4C71C1C06A for ; Tue, 17 Mar 2020 01:50:17 +0100 (CET) IronPort-SDR: 1B/3VCfURy101n2tTzXEJ1G6wCJbao9ER2Pa3rFOY1AsYAmZT6ag5ulFiJteaL4mDfo0sr3t9z Kui1J5G8mFbw== X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 16 Mar 2020 17:50:15 -0700 IronPort-SDR: l4G0LES42zuqNWwZm6/1xYrWYUhY6nKajut8SzNqOmkzFGfDc4pB8fELoPwhhZxccZFB0UV5U0 UuqFqsdwi7bA== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.70,562,1574150400"; d="scan'208";a="355208463" Received: from win-dpdk-pallavi.jf.intel.com (HELO localhost.localdomain) ([10.166.188.75]) by fmsmga001.fm.intel.com with ESMTP; 16 Mar 2020 17:50:14 -0700 From: Pallavi Kadam To: dev@dpdk.org, thomas@monjalon.net Cc: ranjit.menon@intel.com, talshn@mellanox.com, pallavi.kadam@intel.com Date: Mon, 16 Mar 2020 17:48:02 -0700 Message-Id: <20200317004802.11424-3-pallavi.kadam@intel.com> X-Mailer: git-send-email 2.18.0.windows.1 In-Reply-To: <20200317004802.11424-1-pallavi.kadam@intel.com> References: <20200317004802.11424-1-pallavi.kadam@intel.com> Subject: [dpdk-dev] [PATCH 2/2] build: add module definitions and pci lib support 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" Added mman functions to eal exports list. Added librte_pci support for Windows. Signed-off-by: Pallavi Kadam Reviewed-by: Ranjit Menon --- lib/librte_eal/rte_eal_exports.def | 2 ++ lib/meson.build | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/librte_eal/rte_eal_exports.def b/lib/librte_eal/rte_eal_exports.def index 12a6c79d6..bc577dd45 100644 --- a/lib/librte_eal/rte_eal_exports.def +++ b/lib/librte_eal/rte_eal_exports.def @@ -7,3 +7,5 @@ EXPORTS rte_eal_remote_launch rte_log rte_vlog + mmap + munmap diff --git a/lib/meson.build b/lib/meson.build index 0af3efab2..ab580202b 100644 --- a/lib/meson.build +++ b/lib/meson.build @@ -33,7 +33,7 @@ libraries = [ 'flow_classify', 'bpf', 'telemetry'] if is_windows - libraries = ['kvargs','eal'] # only supported libraries for windows + libraries = ['kvargs','eal','pci'] # only supported libraries for windows endif default_cflags = machine_args