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 62854A0350; Sun, 28 Jun 2020 12:59:28 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id ADF741C21E; Sun, 28 Jun 2020 12:59:14 +0200 (CEST) Received: from mellanox.co.il (mail-il-dmz.mellanox.com [193.47.165.129]) by dpdk.org (Postfix) with ESMTP id 856021C1D7 for ; Sun, 28 Jun 2020 12:59:10 +0200 (CEST) Received: from Internal Mail-Server by MTLPINE1 (envelope-from fady@mellanox.com) with SMTP; 28 Jun 2020 13:59:08 +0300 Received: from l-wincomp04-vm.labs.mlnx (l-wincomp04-vm.mtl.labs.mlnx [10.237.1.5]) by labmailer.mlnx (8.13.8/8.13.8) with ESMTP id 05SAx7gm021736; Sun, 28 Jun 2020 13:59:08 +0300 From: Fady Bader To: dev@dpdk.org Cc: fady@mellanox.com, thomas@monjalon.net, tbashar@mellanox.com, talshn@mellanox.com, yohadt@mellanox.com, dmitry.kozliuk@gmail.com, harini.ramakrishnan@microsoft.com, ocardona@microsoft.com, ranjit.menon@intel.com, pallavi.kadam@intel.com, kevin.laatz@intel.com, ferruh.yigit@intel.com, arybchenko@solarflare.com, ciara.power@intel.com Date: Sun, 28 Jun 2020 13:58:51 +0300 Message-Id: <20200628105851.14916-6-fady@mellanox.com> X-Mailer: git-send-email 2.16.1.windows.4 In-Reply-To: <20200628105851.14916-1-fady@mellanox.com> References: <20200625133038.25180-2-fady@mellanox.com> <20200628105851.14916-1-fady@mellanox.com> Subject: [dpdk-dev] [PATCH v2 5/5] ethdev: compiling ethdev under Windows 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" Compiling needed libraries for ethdev under Windows. Signed-off-by: Fady Bader --- lib/meson.build | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lib/meson.build b/lib/meson.build index 6317309ecf..34366cd614 100644 --- a/lib/meson.build +++ b/lib/meson.build @@ -37,9 +37,12 @@ libraries = [ if is_windows libraries = [ - 'kvargs','eal', + 'kvargs', + 'telemetry', # basic info querying + 'eal', 'ring', - 'mempool','mbuf', 'net', 'pci', ] # only supported libraries for windows + 'mempool','mbuf', 'net', 'meter', 'ethdev', 'pci', + ] # only supported libraries for windows endif default_cflags = machine_args -- 2.16.1.windows.4