From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-12.7 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,UNPARSEABLE_RELAY,URIBL_BLOCKED,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 0110BC4727C for ; Thu, 1 Oct 2020 15:31:47 +0000 (UTC) Received: from dpdk.org (dpdk.org [92.243.14.124]) by mail.kernel.org (Postfix) with ESMTP id 932B32074B for ; Thu, 1 Oct 2020 15:31:46 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 932B32074B Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=nvidia.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=dev-bounces@dpdk.org 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