From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 6070FA00E6 for ; Mon, 8 Jul 2019 11:16:32 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 136DD1B952; Mon, 8 Jul 2019 11:16:30 +0200 (CEST) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id E54173195 for ; Mon, 8 Jul 2019 11:16:28 +0200 (CEST) X-Amp-Result: UNSCANNABLE X-Amp-File-Uploaded: False Received: from orsmga008.jf.intel.com ([10.7.209.65]) by orsmga105.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 08 Jul 2019 02:16:27 -0700 X-IronPort-AV: E=Sophos;i="5.63,466,1557212400"; d="scan'208";a="159071825" Received: from bricha3-mobl.ger.corp.intel.com ([10.237.221.51]) by orsmga008-auth.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 08 Jul 2019 02:16:25 -0700 Date: Mon, 8 Jul 2019 10:16:22 +0100 From: Bruce Richardson To: Thomas Monjalon Cc: Matan Azrad , Shahaf Shuler , Yongseok Koh , Viacheslav Ovsiienko , dev@dpdk.org Message-ID: <20190708091622.GB476@bricha3-MOBL.ger.corp.intel.com> References: <20190708071804.15167-1-thomas@monjalon.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20190708071804.15167-1-thomas@monjalon.net> User-Agent: Mutt/1.11.4 (2019-03-13) Subject: Re: [dpdk-dev] [PATCH] net/mlx: allow build only on Linux X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 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, Jul 08, 2019 at 09:18:04AM +0200, Thomas Monjalon wrote: > Currently mlx4/mlx5 support only Linux. > > Signed-off-by: Thomas Monjalon > --- > drivers/net/mlx4/meson.build | 11 +++++++++-- > drivers/net/mlx5/meson.build | 10 +++++++++- > 2 files changed, 18 insertions(+), 3 deletions(-) > > diff --git a/drivers/net/mlx4/meson.build b/drivers/net/mlx4/meson.build > index 5de04b70b..028cd97fa 100644 > --- a/drivers/net/mlx4/meson.build > +++ b/drivers/net/mlx4/meson.build > @@ -2,6 +2,13 @@ > # Copyright 2018 6WIND S.A. > # Copyright 2018 Mellanox Technologies, Ltd > > +if not is_linux > + build = false > + reason = 'only supported on Linux' > + subdir_done() > +endif > +build = true > + Acked-by: Bruce Richardson