From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-16.6 required=3.0 tests=BAYES_00,DKIM_INVALID, DKIM_SIGNED,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 732EFC433B4 for ; Tue, 27 Apr 2021 20:02:10 +0000 (UTC) Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by mail.kernel.org (Postfix) with ESMTP id C058660C40 for ; Tue, 27 Apr 2021 20:02:09 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org C058660C40 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=linux.microsoft.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=dev-bounces@dpdk.org Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 83DDC410D8; Tue, 27 Apr 2021 22:02:08 +0200 (CEST) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id F10F54003E for ; Tue, 27 Apr 2021 22:02:06 +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 2FB9920B8001; Tue, 27 Apr 2021 13:02:06 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 2FB9920B8001 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1619553726; bh=1EeWuYiADQ0asJM4aiYNRnb2Ob7s/5lafqpCFJ1jch0=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=dDZs9Pam/F6lD1fI0GpF71Qdi4hHNHc060EhlS+IdhNOC+9bZKefBmFfJ3ythlyQ1 uk0ew++p7//0+H3Boy7Di7ROKFzwmZbjt4eN7go7c18siq2hwL+0PgYcx1zeaY9jlK uquZfgzE11pdK/vSB9fvOHPUi+JM2DP3ALnCxotQ= From: Jie Zhou To: dev@dpdk.org Cc: dmitry.kozliuk@gmail.com, xiaoyun.li@intel.com, roretzla@microsoft.com, talshn@nvidia.com, pallavi.kadam@intel.com, thomas@monjalon.net, bruce.richardson@intel.com, ferruh.yigit@intel.com, konstantin.ananyev@intel.com Date: Tue, 27 Apr 2021 13:01:52 -0700 Message-Id: <1619553721-5220-2-git-send-email-jizh@linux.microsoft.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1619553721-5220-1-git-send-email-jizh@linux.microsoft.com> References: <1619137920-13449-1-git-send-email-jizh@linux.microsoft.com> <1619553721-5220-1-git-send-email-jizh@linux.microsoft.com> Subject: [dpdk-dev] [PATCH v8 01/10] lib: build libraries that testpmd depends 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 libraries that testpmd depends on Signed-off-by: Jie Zhou Signed-off-by: Jie Zhou --- lib/meson.build | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lib/meson.build b/lib/meson.build index c9a20f65b..2d499b238 100644 --- a/lib/meson.build +++ b/lib/meson.build @@ -76,8 +76,15 @@ if is_windows 'ethdev', 'pci', 'cmdline', + 'metrics', 'hash', + 'timer', + 'bitratestats', 'cfgfile', + 'gro', + 'gso', + 'latencystats', + 'pdump', ] # only supported libraries for windows endif -- 2.30.0.vfs.0.2