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 6C75BA04B5; Mon, 11 Jan 2021 19:56:13 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 29BC3141008; Mon, 11 Jan 2021 19:56:13 +0100 (CET) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 174C8141008 for ; Mon, 11 Jan 2021 19:56:11 +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 5817020B6C41; Mon, 11 Jan 2021 10:56:10 -0800 (PST) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 5817020B6C41 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1610391370; bh=PfKHWP1TQNLQm7+hLkfco2DLwPme7Gw0NpZkBWbQxRo=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=X04yYZ28awHH/qO+2KgKmMnU+dwTZwrta4UMQSuWRBhdaSIrdTzGu08AzzEn+WHAp bn6SHJIyuLNsLNRV/q7Y+FzQCPKF8KZ6ulirasglpppzakjMwBulU/tnirsnvpJLfI 3XI95K6goP8nioiylADg8m6on5UiL4oCIDw6Wd84= From: Tyler Retzlaff To: thomas@monjalon.net Cc: dev@dpdk.org Date: Mon, 11 Jan 2021 10:55:37 -0800 Message-Id: <1610391337-24080-2-git-send-email-roretzla@linux.microsoft.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1610391337-24080-1-git-send-email-roretzla@linux.microsoft.com> References: <20 210111183640.CE1D7106B@dpdk.org> <1610391337-24080-1-git-send-email-roretzla@linux.microsoft.com> 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 Signed-off-by: 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