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=-15.1 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_SANE_1 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 AE44AC433B4 for ; Mon, 3 May 2021 21:38:46 +0000 (UTC) Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by mail.kernel.org (Postfix) with ESMTP id 2BB23611AD for ; Mon, 3 May 2021 21:38:46 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 2BB23611AD 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 3BF6F40150; Mon, 3 May 2021 23:38:45 +0200 (CEST) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id A8BB64014E for ; Mon, 3 May 2021 23:38:43 +0200 (CEST) Received: by linux.microsoft.com (Postfix, from userid 1061) id D887D20B7188; Mon, 3 May 2021 14:38:42 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com D887D20B7188 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1620077922; bh=a8QksUHYtwOWemjacvfUfDU6f3Xldjbtcwkg0fY7Yns=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=tA2PcwnCb9niLOnxZmqQar7a/trZdkurrjo8tJSIlKsI86GH551ktcdSUO5Mb9FJG WJ+1aKqJtByDVhzQZe3DgGVInNTlkWcWXmZisaf35PoOIaY7FgK7g/FH+dX3dxoENq YxH9DG1FTc4jvDYUWddzuSD/9kbllgX9nZAt4wi0= Date: Mon, 3 May 2021 14:38:42 -0700 From: Jie Zhou To: Tal Shnaiderman Cc: "dev@dpdk.org" , "dmitry.kozliuk@gmail.com" , "xiaoyun.li@intel.com" , "roretzla@microsoft.com" , "pallavi.kadam@intel.com" , NBU-Contact-Thomas Monjalon , "bruce.richardson@intel.com" , "ferruh.yigit@intel.com" , "konstantin.ananyev@intel.com" Message-ID: <20210503213842.GA7525@linuxonhyperv3.guj3yctzbm1etfxqx2vob5hsef.xx.internal.cloudapp.net> References: <1619553721-5220-1-git-send-email-jizh@linux.microsoft.com> <1619805162-10684-1-git-send-email-jizh@linux.microsoft.com> <1619805162-10684-2-git-send-email-jizh@linux.microsoft.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Subject: Re: [dpdk-dev] [PATCH v9 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" On Mon, May 03, 2021 at 05:36:30PM +0000, Tal Shnaiderman wrote: > > Subject: [PATCH v9 01/10] lib: build libraries that testpmd depends on > > > > External email: Use caution opening links or attachments > > > > > > Enable building libraries that testpmd depends on > > > > You should mention the change is for Windows only. Will explicitly mention the change is for Windows only in V10. > > > 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