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 5FE2AA04BA; Thu, 1 Oct 2020 17:31:47 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 0D4521DBF3; Thu, 1 Oct 2020 17:31:21 +0200 (CEST) Received: from mellanox.co.il (mail-il-dmz.mellanox.com [193.47.165.129]) by dpdk.org (Postfix) with ESMTP id 8DA1C1DBD5 for ; Thu, 1 Oct 2020 17:31:17 +0200 (CEST) Received: from Internal Mail-Server by MTLPINE1 (envelope-from talshn@nvidia.com) with SMTP; 1 Oct 2020 18:31:12 +0300 Received: from nvidia.com (l-wincomp04-vm.mtl.labs.mlnx [10.237.1.5]) by labmailer.mlnx (8.13.8/8.13.8) with ESMTP id 091FVCh3022037; Thu, 1 Oct 2020 18:31:12 +0300 From: Tal Shnaiderman To: dev@dpdk.org Cc: thomas@monjalon.net, pallavi.kadam@intel.com, dmitry.kozliuk@gmail.com, ranjit.menon@intel.com, navasile@linux.microsoft.com, dmitrym@microsoft.com, yipeng1.wang@intel.com, sameh.gobriel@intel.com, bruce.richardson@intel.com, Ophir Munk Date: Thu, 1 Oct 2020 18:30:59 +0300 Message-Id: <20201001153059.8856-1-talshn@nvidia.com> X-Mailer: git-send-email 2.16.1.windows.4 Subject: [dpdk-dev] [PATCH] hash: 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" From: Ophir Munk Build the lib for Windows. Export the needed function from eal. Signed-off-by: Ophir Munk Signed-off-by: Tal Shnaiderman --- lib/librte_eal/rte_eal_exports.def | 2 ++ lib/meson.build | 1 + 2 files changed, 3 insertions(+) diff --git a/lib/librte_eal/rte_eal_exports.def b/lib/librte_eal/rte_eal_exports.def index cda3e0c79f..7b35beb702 100644 --- a/lib/librte_eal/rte_eal_exports.def +++ b/lib/librte_eal/rte_eal_exports.def @@ -6,6 +6,7 @@ EXPORTS rte_bus_register rte_calloc rte_calloc_socket + rte_cpu_get_flag_enabled rte_dev_is_probed rte_devargs_insert rte_devargs_next @@ -69,6 +70,7 @@ EXPORTS rte_vfio_container_dma_unmap rte_vlog rte_realloc + rte_rtm_supported rte_strscpy rte_zmalloc rte_zmalloc_socket diff --git a/lib/meson.build b/lib/meson.build index d8b358e5f4..e5597f174c 100644 --- a/lib/meson.build +++ b/lib/meson.build @@ -42,6 +42,7 @@ if is_windows 'eal', 'ring', 'mempool', 'mbuf', 'net', 'meter', 'ethdev', 'pci', + 'hash', ] # only supported libraries for windows endif -- 2.16.1.windows.4