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 6C8BDA09E4; Thu, 28 Jan 2021 13:28:33 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 02B5F4067D; Thu, 28 Jan 2021 13:28:33 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [63.128.21.124]) by mails.dpdk.org (Postfix) with ESMTP id 7D0DA4067A for ; Thu, 28 Jan 2021 13:28:31 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1611836910; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=B5zUB5SaEiih+w+baXPw6gWS6PzFPOYWoYM++F53Dts=; b=XS4odzzPSRls2vKqcq362peCjFbu3AQhrsKppBQ7ip05BQeFDsG4Ck4Dj8v99QRRxBBwQD phT+IkzSQgwHvGZfpG7s48AoccsbN7eHegvyZK6u6NVC4RMtklYHFno9kaPgSh7U7WGirQ +GHde+CSVyFDC0ktIxTfES2nvC7DqZE= Received: from mail-ua1-f71.google.com (mail-ua1-f71.google.com [209.85.222.71]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-100-Iui21LMbNsG5W7gnOlbVrA-1; Thu, 28 Jan 2021 07:28:28 -0500 X-MC-Unique: Iui21LMbNsG5W7gnOlbVrA-1 Received: by mail-ua1-f71.google.com with SMTP id y26so128878uap.19 for ; Thu, 28 Jan 2021 04:28:28 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=B5zUB5SaEiih+w+baXPw6gWS6PzFPOYWoYM++F53Dts=; b=c6IiwyKhca1v3wsrtZI1FKUom0jT+NQbQm/berxWjt+6jygFFFnbntU1wab3k3usyZ 1cA8J/+9uS03dpxYxo1kRZt1c7+OpTcAe0uWi3VZqr833dPCNenc+Dc7hoMk0mVAUHyx FtfDn1EzSZzWxRa0E4noMao4gx2NX8KgZeUxDOSdSZ6k8CbgIeC2vWfa3aqu5fB4ExL7 64P+rWmwt7SfFKDjPzDRR0BfnJh1ciTGJ+kNGlAwbRLvUDIYcjwn8Rottf9J/Jl5eI9V hO8GymvCfTMk3ZCPUhE3DgMxKNSR4cto2hw+0L+ArNJHWyYU5VRdJTnTUQmbReZuXmFE 7L/Q== X-Gm-Message-State: AOAM533lUqmlW8mE38xTAv2022l2kslIAhrqOxYTKE03AjJfIr5XFC/s 1jFRhvOaEtEsiJn0IKYbl6MwRzM+9xcEDJ0GMqcapsgKURhPXzcowKwEYGDTy1hHNLezk9ZZJhQ d7RkLSK/RAc0ZKIpPofQ= X-Received: by 2002:ac5:cf1e:: with SMTP id y30mr6253898vke.18.1611836908334; Thu, 28 Jan 2021 04:28:28 -0800 (PST) X-Google-Smtp-Source: ABdhPJxrjlf9rvLpMetMHztxlMTXUuGVy14RmRoRdOysBgilu1w0DKugnhSq+R9mpLSRhOVu0mD8e8xANomWU+IagWY= X-Received: by 2002:ac5:cf1e:: with SMTP id y30mr6253887vke.18.1611836908149; Thu, 28 Jan 2021 04:28:28 -0800 (PST) MIME-Version: 1.0 References: <20210126153819.63625-1-leyi.rong@intel.com> <20210127142706.6290-1-leyi.rong@intel.com> In-Reply-To: <20210127142706.6290-1-leyi.rong@intel.com> From: David Marchand Date: Thu, 28 Jan 2021 13:28:16 +0100 Message-ID: To: Leyi Rong Cc: Bruce Richardson , Tal Shnaiderman , Qi Zhang , Pallavi Kadam , "Yigit, Ferruh" , Ranjit Menon , Beilei Xing , dev , Thomas Monjalon Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=dmarchan@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset="UTF-8" Subject: Re: [dpdk-dev] [PATCH v3 0/2] fix mingw build error 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 Wed, Jan 27, 2021 at 3:47 PM Leyi Rong wrote: > > This patchset fix mingw build error when avx512 is introduced. > > --- > v2: > - Set i40e_avx512_cc_support to false to avoid the build error under > windows with mingw. > > Leyi Rong (2): > config: disable avx512 on mingw cross build > net/i40e: fix mingw build error > > config/x86/cross-mingw | 3 +++ > drivers/net/i40e/meson.build | 4 ++++ > 2 files changed, 7 insertions(+) LGTM with fc32 mingw. Tested-by: David Marchand -- David Marchand