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 60AB9A0C45; Sat, 4 Sep 2021 06:19:35 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 9F54F41101; Sat, 4 Sep 2021 06:19:25 +0200 (CEST) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 9706040E78 for ; Sat, 4 Sep 2021 06:19:21 +0200 (CEST) Received: from linuxonhyperv3.guj3yctzbm1etfxqx2vob5hsef.xx.internal.cloudapp.net (linux.microsoft.com [13.77.154.182]) by linux.microsoft.com (Postfix) with ESMTPSA id 860A620BBF6C; Fri, 3 Sep 2021 21:19:20 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 860A620BBF6C DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1630729160; bh=xHIDLve0a8QPXazIbPljyXDTTS5tWiEyuHtM3+3X4a8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=bw5Qt431szFVNM0lzdeIELuJRoYZ58R4n64/UN1cuXmS1SHv4o4SvX5l2iy17xvv+ azWncdap3JRtextTc2y3KaeXpOxyKtZJPbY9ohTtrnZY/ILLBxxl0FjvUJn/PyMemL BgEIxEBtvMeIGFHWhc8ArmVJsL+wWNB0fRYOkJxE= From: Jie Zhou To: dev@dpdk.org Cc: dmitry.kozliuk@gmail.com, roretzla@microsoft.com, navasile@linux.microsoft.com, dmitrym@microsoft.com, pallavi.kadam@intel.com, talshn@nvidia.com, thomas@monjalon.net, aconole@redhat.com Date: Fri, 3 Sep 2021 21:19:03 -0700 Message-Id: <1630729155-24584-2-git-send-email-jizh@linux.microsoft.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1630729155-24584-1-git-send-email-jizh@linux.microsoft.com> References: <1629306834-6277-1-git-send-email-jizh@linux.microsoft.com> <1630729155-24584-1-git-send-email-jizh@linux.microsoft.com> Subject: [dpdk-dev] [PATCH v3 01/13] lib: build libraries that some tests depend on 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" Enable building subset of libraries that tests depend on for Windows Signed-off-by: Jie Zhou --- lib/meson.build | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/meson.build b/lib/meson.build index 1673ca4323..f109d6987d 100644 --- a/lib/meson.build +++ b/lib/meson.build @@ -81,10 +81,16 @@ if is_windows 'timer', 'bitratestats', 'cfgfile', + 'efd', 'gro', 'gso', + 'ip_frag', 'latencystats', + 'lpm', 'pdump', + 'rib', + 'reorder', + 'stack', ] # only supported libraries for windows endif -- 2.32.0.windows.2