From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id D6C28A0A02; Fri, 26 Mar 2021 12:41:52 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 65A6840685; Fri, 26 Mar 2021 12:41:52 +0100 (CET) Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by mails.dpdk.org (Postfix) with ESMTP id 0521F4067B for ; Fri, 26 Mar 2021 12:41:50 +0100 (CET) IronPort-SDR: prdkbJ0dF+oOSokLawcVTvuDhoa27VtFVUIfFygepjv4XwHXr9v0K9p+KhSa70cF33/xBAXgIT 9oZsCUhJnHKA== X-IronPort-AV: E=McAfee;i="6000,8403,9934"; a="188853999" X-IronPort-AV: E=Sophos;i="5.81,280,1610438400"; d="scan'208";a="188853999" Received: from orsmga003.jf.intel.com ([10.7.209.27]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 26 Mar 2021 04:41:49 -0700 IronPort-SDR: 3WEwGPco9Mdt9gsuNYPgkYfIHd6bSLakYCbNK8OeLxUqRrDAOSt5Ez724JODRn2p6OIWNeJOZD TdFm7qVnaTsw== X-IronPort-AV: E=Sophos;i="5.81,280,1610438400"; d="scan'208";a="375458246" Received: from fyigit-mobl1.ger.corp.intel.com (HELO [10.213.231.99]) ([10.213.231.99]) by orsmga003-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 26 Mar 2021 04:41:47 -0700 To: Pallavi Kadam , dev@dpdk.org, thomas@monjalon.net Cc: dmitry.kozliuk@gmail.com, ranjit.menon@intel.com, qiming.yang@intel.com, qi.z.zhang@intel.com References: <20210303215929.5616-1-pallavi.kadam@intel.com> <20210311015848.4976-1-pallavi.kadam@intel.com> <20210311015848.4976-2-pallavi.kadam@intel.com> From: Ferruh Yigit X-User: ferruhy Message-ID: <3d02f124-b1cb-46e4-9376-78759479ea34@intel.com> Date: Fri, 26 Mar 2021 11:41:44 +0000 MIME-Version: 1.0 In-Reply-To: <20210311015848.4976-2-pallavi.kadam@intel.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 8bit Subject: Re: [dpdk-dev] [PATCH v2 1/3] build: enable iavf base code to build on windows 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 3/11/2021 1:58 AM, Pallavi Kadam wrote: > Enable IAVF driver to build on Windows as it is required > to build ice PMD. > Disable all other drivers from common directory. > This patch also includes fix for a macro redefinition warning > in the IAVF driver. > > Signed-off-by: Pallavi Kadam > Reviewed-by: Ranjit Menon <...> > index 6cb9f0737..a2dfed0ec 100644 > --- a/drivers/common/sfc_efx/meson.build > +++ b/drivers/common/sfc_efx/meson.build > @@ -5,6 +5,12 @@ > # This software was jointly developed between OKTET Labs (under contract > # for Solarflare) and Solarflare Communications, Inc. > > +if is_windows > + build = false > + reason = 'not supported on Windows' > + subdir_done() > +endif > + 'common/sfc_efx/meson.build' already has similar update in the upstream, can you please rebase on latest head of the repo.