From patchwork Thu Oct 14 04:52:39 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jie Zhou X-Patchwork-Id: 101537 X-Patchwork-Delegate: thomas@monjalon.net 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 23995A0C53; Thu, 14 Oct 2021 06:53:02 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 2326D4115E; Thu, 14 Oct 2021 06:52:57 +0200 (CEST) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 623A440042 for ; Thu, 14 Oct 2021 06:52:55 +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 9A62720B9D0C; Wed, 13 Oct 2021 21:52:54 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 9A62720B9D0C DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1634187174; bh=76E06osl2Mivns6lBnXmbbplCX/iwPXLMDUiL/Bn9QU=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=sGBQglt0AdjmENv9WwlEpU8pE8sHDdT6RAdnjDnK8nfjG8FdU1rulERklJq+8Jz5m BnH3GrydpUL96ZgLJQAU5b2XGCi6KIuKWdZQppDVGfs+sLgUoShj/SqJFcD9mJvO4G stDKT+aIiBo+JVdZvvfT9Xe+nUZ4fgiNQeCte6CA= 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 21:52:39 -0700 Message-Id: <1634187170-3986-2-git-send-email-jizh@linux.microsoft.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1634187170-3986-1-git-send-email-jizh@linux.microsoft.com> References: <1634182214-24540-1-git-send-email-jizh@linux.microsoft.com> <1634187170-3986-1-git-send-email-jizh@linux.microsoft.com> Subject: [dpdk-dev] [PATCH v5 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',