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 4B7F8A0350; Sun, 21 Jun 2020 14:07:03 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 410611C06C; Sun, 21 Jun 2020 14:07:02 +0200 (CEST) Received: from mellanox.co.il (mail-il-dmz.mellanox.com [193.47.165.129]) by dpdk.org (Postfix) with ESMTP id E38BF1C069 for ; Sun, 21 Jun 2020 14:07:00 +0200 (CEST) Received: from Internal Mail-Server by MTLPINE1 (envelope-from fady@mellanox.com) with SMTP; 21 Jun 2020 15:06:59 +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 05LC6xSk009191; Sun, 21 Jun 2020 15:06:59 +0300 From: Fady Bader To: dev@dpdk.org Cc: thomas@monjalon.net, talshn@mellanox.com, yohadt@mellanox.com, konstantin.ananyev@intel.com, honnappa.nagarahalli@arm.com, harini.ramakrishnan@microsoft.com, ocardona@microsoft.com, ranjit.menon@intel.com, pallavi.kadam@intel.com, dmitry.kozliuk@gmail.com Date: Sun, 21 Jun 2020 15:06:19 +0300 Message-Id: <20200621120619.24692-1-fady@mellanox.com> X-Mailer: git-send-email 2.16.1.windows.4 In-Reply-To: <'20200520093444.14904-1-fady@mellanox.com'> References: <'20200520093444.14904-1-fady@mellanox.com'> Subject: [dpdk-dev] [PATCH v5] eal/windows: ring build on 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" Building ring on Windows. Signed-off-by: Fady Bader --- Depends-on: series-10531 ("Windows bus/pci support") v5: rebase to current master and "Windows bus/pci support" v7. v4: rebase on "Windows basic memory management" v5. v3: Fix style issues. v2: Fix style issues. --- lib/meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/meson.build b/lib/meson.build index af66610fcb..9074cb58af 100644 --- a/lib/meson.build +++ b/lib/meson.build @@ -38,6 +38,7 @@ libraries = [ if is_windows libraries = [ 'kvargs','eal', + 'ring', 'pci', ] # only supported libraries for windows endif -- 2.16.1.windows.4