From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id A2EFBA04B5; Mon, 11 Jan 2021 19:36:31 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 299B3141003; Mon, 11 Jan 2021 19:36:31 +0100 (CET) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 84D55141002 for ; Mon, 11 Jan 2021 19:36:29 +0100 (CET) Received: from linuxonhyperv3.guj3yctzbm1etfxqx2vob5hsef.xx.internal.cloudapp.net (linux.microsoft.com [13.77.154.182]) by linux.microsoft.com (Postfix) with ESMTPSA id C82B420B6C40; Mon, 11 Jan 2021 10:36:28 -0800 (PST) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com C82B420B6C40 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1610390188; bh=raBN2KjlJhCz5ZFxtb3mhDkYvssFEh1A/ohxzjjZqTw=; h=From:To:Cc:Subject:Date:From; b=TJz8XV9Veo1RXLOKcYXJdbMh6BEtLb4umfkjmVFEgQ9H3FqXX1m5z32ZFmt8Z4ux3 80v6tUh03jiVTWfx9Iymre4lUwVgF9rNit+DC/w4Bct+R01hDAxzof5p9N22bxrn8N EA5cD1/XZNUs+AIjO0XbPtKeM/uZ7lhuuJV0eURE= From: Tyler Retzlaff To: thomas@monjalon.net Cc: dev@dpdk.org Date: Mon, 11 Jan 2021 10:36:23 -0800 Message-Id: <1610390183-22709-1-git-send-email-roretzla@linux.microsoft.com> X-Mailer: git-send-email 1.8.3.1 Subject: [dpdk-dev] [PATCH] build rte_reciprocal.c on windows and export rte_reciprocal_value_u64 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 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: Tyler Retzlaff --- lib/librte_eal/common/meson.build | 1 + lib/librte_eal/rte_eal_exports.def | 1 + 2 files changed, 2 insertions(+) diff --git a/lib/librte_eal/common/meson.build b/lib/librte_eal/common/meson.build index 39abf7a0a..9c6f18eb8 100644 --- a/lib/librte_eal/common/meson.build +++ b/lib/librte_eal/common/meson.build @@ -34,6 +34,7 @@ if is_windows 'rte_malloc.c', 'eal_common_timer.c', 'rte_service.c', + 'rte_reciprocal.c', ) subdir_done() endif diff --git a/lib/librte_eal/rte_eal_exports.def b/lib/librte_eal/rte_eal_exports.def index 4597eb8cd..ba1443dc2 100644 --- a/lib/librte_eal/rte_eal_exports.def +++ b/lib/librte_eal/rte_eal_exports.def @@ -326,3 +326,4 @@ EXPORTS rte_mem_map rte_mem_page_size rte_mem_unmap + rte_reciprocal_value_u64 -- 2.29.0.vfs.0.0