From patchwork Thu Oct 14 03:30:03 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jie Zhou X-Patchwork-Id: 101523 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id AC97CA0C4B; Thu, 14 Oct 2021 05:30:22 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 678D440E50; Thu, 14 Oct 2021 05:30:22 +0200 (CEST) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 3227A40041 for ; Thu, 14 Oct 2021 05:30:20 +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 743F920B9D09; Wed, 13 Oct 2021 20:30:19 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 743F920B9D09 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1634182219; bh=76E06osl2Mivns6lBnXmbbplCX/iwPXLMDUiL/Bn9QU=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=T5IlStWHn6o9n7YU2SyC7OKYKhLN32LkOks9If+N49cs/FYiTS2wl5U2upaKiYOg6 UOIB4eR06rTZ5L6pZK3qjRPTBrWDy8ncVoeyVPf6WMp4Pz8LwQ8Eotf6bS1FQ6LCRz pBAHkubDC8Otd/75AFaQdYvJNn/BJ8jZStM3R0QU= 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: Wed, 13 Oct 2021 20:30:03 -0700 Message-Id: <1634182214-24540-2-git-send-email-jizh@linux.microsoft.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1634182214-24540-1-git-send-email-jizh@linux.microsoft.com> References: <1630729155-24584-1-git-send-email-jizh@linux.microsoft.com> <1634182214-24540-1-git-send-email-jizh@linux.microsoft.com> Subject: [dpdk-dev] [PATCH v4 01/12] 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 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/meson.build b/lib/meson.build index b2ba7258d8..bd6c27deef 100644 --- a/lib/meson.build +++ b/lib/meson.build @@ -82,9 +82,11 @@ if is_windows 'bitratestats', 'cryptodev', 'cfgfile', + 'efd', 'gro', 'gso', 'latencystats', + 'lpm', 'pdump', 'stack', 'security',