From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <thomas@monjalon.net>
Received: from out2-smtp.messagingengine.com (out2-smtp.messagingengine.com
 [66.111.4.26]) by dpdk.org (Postfix) with ESMTP id E31321CEA8
 for <dev@dpdk.org>; Sun, 13 May 2018 00:03:01 +0200 (CEST)
Received: from compute1.internal (compute1.nyi.internal [10.202.2.41])
 by mailout.nyi.internal (Postfix) with ESMTP id 24CC425BA9;
 Sat, 12 May 2018 18:03:01 -0400 (EDT)
Received: from mailfrontend1 ([10.202.2.162])
 by compute1.internal (MEProxy); Sat, 12 May 2018 18:03:01 -0400
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h=
 cc:content-transfer-encoding:content-type:date:from:in-reply-to
 :message-id:mime-version:references:subject:to:x-me-sender
 :x-me-sender:x-sasl-enc; s=mesmtp; bh=M/QZXMOIXMjQ7I8HerFs5fJCd1
 LlJqfhoqdMt1SDl1I=; b=fS+JCpkXr9O+y7JSazystWxNtJQVMLM0desL9SFm9C
 0PdgXhX0irhsd83mbjQYpsAT1mC00avEtNGZFw9WYm6kJASREIwY3veDYjyeyNJb
 GZXh7UYDaX7WZ4I3R/ZdwgruKRTeQ1Jl15hDMDgWkxPS5P2kEm3wjhS23FYNERIa
 8=
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=
 messagingengine.com; h=cc:content-transfer-encoding:content-type
 :date:from:in-reply-to:message-id:mime-version:references
 :subject:to:x-me-sender:x-me-sender:x-sasl-enc; s=fm2; bh=M/QZXM
 OIXMjQ7I8HerFs5fJCd1LlJqfhoqdMt1SDl1I=; b=HhEQwxTukj3dUbZhS/SCnz
 afH/bM6O4ePByGFR7PDrHGeH0gPOhrpSa7crddzQ2N72rDB4WkTF+TCAA3cmh1q3
 hGxzFr7neNU0Z1H25hDVU1aOEiYNXWtUmGaPRmjt7JlEJ793fEwH4SULrxCUOZ2b
 Oqk4JZd/gEq3n6/v3HysKkM9zd1eAi7Wc+ZzZZ8iMkhzUpapabky9PSpWLhb88ik
 4nMeDXaENmkqVPOIGf2yyYCgpvbNXSgQwaYtTZAXqKg3/9Xxgz8ADgxwydfICoDA
 8S4hXfwdFe3Bg5iz/ZoCmxDHGruRaGYS7uVgYdIRONdWo/UM6VBBoeVRoyS7W9xA
 ==
X-ME-Sender: <xms:lGT3WsOB65gLHeKdW-MtgbKvHoX-iRwG8h-QAysDSGUKjPK6WtptHA>
Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184])
 by mail.messagingengine.com (Postfix) with ESMTPA id 7C640E46C2;
 Sat, 12 May 2018 18:03:00 -0400 (EDT)
From: Thomas Monjalon <thomas@monjalon.net>
To: Stephen Hemminger <stephen@networkplumber.org>
Cc: dev@dpdk.org, Ferruh Yigit <ferruh.yigit@intel.com>
Date: Sun, 13 May 2018 00:02:59 +0200
Message-ID: <9311220.sRLYH6gzLP@xps>
In-Reply-To: <f1fe4272-c970-7164-1709-8af788238fe4@intel.com>
References: <20180509002605.30996-1-stephen@networkplumber.org>
 <f1fe4272-c970-7164-1709-8af788238fe4@intel.com>
MIME-Version: 1.0
Content-Transfer-Encoding: 7Bit
Content-Type: text/plain; charset="us-ascii"
Subject: Re: [dpdk-dev] [PATCH v6 0/4] Hyper-V netvsc PMD and VMBus support
X-BeenThere: dev@dpdk.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: DPDK patches and discussions <dev.dpdk.org>
List-Unsubscribe: <https://dpdk.org/ml/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://dpdk.org/ml/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <https://dpdk.org/ml/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
X-List-Received-Date: Sat, 12 May 2018 22:03:02 -0000

11/05/2018 18:50, Ferruh Yigit:
> On 5/9/2018 1:26 AM, Stephen Hemminger wrote:
> > Stephen Hemminger (4):
> >   bus/vmbus: add hyper-v virtual bus support
> >   net/netvsc: add hyper-v netvsc network device
> >   net/netvsc: add documentation
> >   bus/vmbus and net/netvsc: add meson build support
> 
> I confirm my test scripts passes for x86, not able to cross build for other
> architectures because of uuid dependency and I am missing cross version of it.
> note: need to enable both LIBRTE_VMBUS & NETVSC_PMD

Unfortunately, I have a compilation error with meson because of uuid dependency:

Library uuid found: NO
[...]
./drivers/bus/vmbus/rte_bus_vmbus.h:23:10: fatal error: uuid/uuid.h:
	No such file or directory

I think it is missing a "build = false" when dep is not found.


In the next revision, please merge meson files in first patches, thanks.