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 25D0AA0C41; Wed, 15 Sep 2021 17:10:30 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id E1DF74068F; Wed, 15 Sep 2021 17:10:29 +0200 (CEST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [216.205.24.124]) by mails.dpdk.org (Postfix) with ESMTP id 81FFB4014F for ; Wed, 15 Sep 2021 17:10:28 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1631718627; 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=59wMwIulzVmsnRKsuJaOMtiV+JvEPv4zRKLxoJYgpJA=; b=NtLqLbAGWj/F8JjoQ3mSgA0TU87jeQBA4ucdRhbSmllHKN7O40BuLJYo+9HWVK1uSdc/7o t2OS7wnxCRiGufm7HOZgodolVrk4RCD7y8/UPF0GZCSpciPy088PMgjEN+xkfkcF+6+ZRP o6U54LBJ9sJj9FuTizO0LMyvlpN83hw= Received: from mail-lf1-f69.google.com (mail-lf1-f69.google.com [209.85.167.69]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-539-eljTll05OyekXBx3EXzayA-1; Wed, 15 Sep 2021 11:10:25 -0400 X-MC-Unique: eljTll05OyekXBx3EXzayA-1 Received: by mail-lf1-f69.google.com with SMTP id h3-20020ac25d63000000b003f11192275eso1258193lft.19 for ; Wed, 15 Sep 2021 08:10:25 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=59wMwIulzVmsnRKsuJaOMtiV+JvEPv4zRKLxoJYgpJA=; b=UTQkRu2kxj3/SMotWcfpWrz+dJxUfZbFMzEJe7hERJji2K+PcZPcdhi8meYzukxP92 UkKCkTNX7yjnAcsXuUcYa5VdBDbtSrllrov85bh8JfmcHbXfRyoWZFGTKCoD7B2AAfxD 983rIa+jLp9BTT24hz4Zg536la7eKWK6ug4emY/OK5zZ93tmY5BgqKdPoktLjQ0o3x+l MY7LLcPpwjprf6dmyt4+Cj6K6sH5zkIK2D7BpU8vYOpec/d3kgfShk/QilPJmK7vGQxj dvShcfoAplH1dZ3G+eWEpvgj9Y1HMrDuxrlGnyIzhDCFVH+hXGcz88qnsdorHdPbzezn NXmA== X-Gm-Message-State: AOAM530FAb4GBxiU2aM3LGwCzre3T27s5nNBTlfkceNlr65rcLk5MX74 W8b/TccdhlMTxyIFpX+of4F5PYBYQvxIa/8u4KlYT+AICfMmYIfuub4z66yFmlRhRY93IuDF5dw Ehm9TaEU7xdxO+3pMiyk= X-Received: by 2002:a05:6512:3095:: with SMTP id z21mr289236lfd.265.1631718624002; Wed, 15 Sep 2021 08:10:24 -0700 (PDT) X-Google-Smtp-Source: ABdhPJzQ+CRTh3DEvd7irL2Fi5/MhMRMmA0jdWKkdvN/Pd7GVQnknzNAl8XBDMU2bROqjHh3dLcr9bGxfeyFsNkjc/0= X-Received: by 2002:a05:6512:3095:: with SMTP id z21mr289216lfd.265.1631718623760; Wed, 15 Sep 2021 08:10:23 -0700 (PDT) MIME-Version: 1.0 References: <20210915050812.12798-1-david.marchand@redhat.com> In-Reply-To: From: David Marchand Date: Wed, 15 Sep 2021 17:10:12 +0200 Message-ID: To: dev Cc: Ferruh Yigit , Bruce Richardson , David Christensen 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] config/ppc: fix build with GCC >= 10 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, Sep 15, 2021 at 11:08 AM Bruce Richardson wrote: > On Wed, Sep 15, 2021 at 09:14:34AM +0100, Ferruh Yigit wrote: > > On 9/15/2021 6:08 AM, David Marchand wrote: > > > Like for python, multiline statements in meson must either use a > > > backslash character (explicit continuation) or be enclosed in () > > > (implicit continuation). > > > > > > python PEP8 recommends the latter [1], and it looks like meson had > > > an issue with backslash before 0.50 [2]. > > > > > > 1: https://www.python.org/dev/peps/pep-0008/#multiline-if-statements > > > 2: https://github.com/mesonbuild/meson/commit/90c9b868b20b > > > > > > Fixes: 394407f50c90 ("config/ppc: ignore GCC 11 psabi warnings") > > > > > > Reported-by: Ferruh Yigit > > > Signed-off-by: David Marchand > > Tested-by: Ferruh Yigit > Acked-by: Bruce Richardson Applied, thanks. -- David Marchand