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 60CE1A0C47; Wed, 3 Nov 2021 20:43:49 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 2520440E0F; Wed, 3 Nov 2021 20:43:49 +0100 (CET) Received: from inbox.dpdk.org (inbox.dpdk.org [95.142.172.178]) by mails.dpdk.org (Postfix) with ESMTP id E846B40689 for ; Wed, 3 Nov 2021 20:43:47 +0100 (CET) Received: by inbox.dpdk.org (Postfix, from userid 33) id D2F5CA0C52; Wed, 3 Nov 2021 20:43:47 +0100 (CET) From: bugzilla@dpdk.org To: dev@dpdk.org Date: Wed, 03 Nov 2021 19:43:47 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: DPDK X-Bugzilla-Component: meson X-Bugzilla-Version: unspecified X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: drc@linux.vnet.ibm.com X-Bugzilla-Status: RESOLVED X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: drc@linux.vnet.ibm.com X-Bugzilla-Target-Milestone: 21.11 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: resolution bug_status target_milestone assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://bugs.dpdk.org/ Auto-Submitted: auto-generated X-Auto-Response-Suppress: All MIME-Version: 1.0 Subject: [dpdk-dev] [Bug 875] meson build fails on POWER9 with gcc 4.8.5 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" https://bugs.dpdk.org/show_bug.cgi?id=3D875 David Christensen (drc@linux.vnet.ibm.com) changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |FIXED Status|UNCONFIRMED |RESOLVED Target Milestone|--- |21.11 Assignee|dev@dpdk.org |drc@linux.vnet.ibm.com --- Comment #1 from David Christensen (drc@linux.vnet.ibm.com) --- Duplicated on a CentOS 7.6 POWER9 VM, fixed with the following patch which = will be submitted upstream: diff --git a/config/ppc/meson.build b/config/ppc/meson.build index cba8222163..1cba44011f 100644 --- a/config/ppc/meson.build +++ b/config/ppc/meson.build @@ -89,7 +89,7 @@ int main() { else error('Compiler does not support POWER@0@ platform'.format(cpu)) endif - if cpu > 8 + if cpu >=3D 8 cpu_instruction_set =3D 'power'+cpu.to_string() else error('Compiler does not support POWER@0@ platform'.format(cpu)) --=20 You are receiving this mail because: You are the assignee for the bug.=