From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E9FE5138359 for ; Thu, 22 Oct 2020 18:06:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 30AB6E0863; Thu, 22 Oct 2020 18:06:26 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1C6D1E0863 for ; Thu, 22 Oct 2020 18:06:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9AB96340C1C for ; Thu, 22 Oct 2020 18:06:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0E23C3BF for ; Thu, 22 Oct 2020 18:06:22 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1603303092.3be3ac842c2a97bd6f60e133591414114c5d60e2.mattst88@gentoo> Subject: [gentoo-commits] proj/catalyst:pending/mattst88 commit in: arch/ X-VCS-Repository: proj/catalyst X-VCS-Files: arch/ppc.toml X-VCS-Directories: arch/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 3be3ac842c2a97bd6f60e133591414114c5d60e2 X-VCS-Branch: pending/mattst88 Date: Thu, 22 Oct 2020 18:06:22 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a4d31e7f-4f67-406a-8a5d-7b640a592425 X-Archives-Hash: fda85b0706b97153d3b836abecbad675 commit: 3be3ac842c2a97bd6f60e133591414114c5d60e2 Author: Georgy Yakovlev gentoo org> AuthorDate: Wed Oct 21 04:33:45 2020 +0000 Commit: Matt Turner gentoo org> CommitDate: Wed Oct 21 17:58:12 2020 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=3be3ac84 arch/ppc.toml: add CHOST based subarches if stage spec sets chost value, code in catalyst/base/stagebase.py#L76 will derive subarch value from the frontmost part of CHOST triple. if such subarch is not defined in toml file, build will fail. Add generic copy of base subarches defined in CHOST format. Signed-off-by: Georgy Yakovlev gentoo.org> Signed-off-by: Matt Turner gentoo.org> arch/ppc.toml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/arch/ppc.toml b/arch/ppc.toml index a3db919e..870c7647 100644 --- a/arch/ppc.toml +++ b/arch/ppc.toml @@ -46,10 +46,18 @@ USE = [ "altivec", "ibm",] COMMON_FLAGS = "-O2 -pipe" CHOST = "powerpc64-unknown-linux-gnu" +[ppc64.powerpc64] +COMMON_FLAGS = "-O2 -pipe" +CHOST = "powerpc64-unknown-linux-gnu" + [ppc64.ppc64le] COMMON_FLAGS = "-O2 -pipe" CHOST = "powerpc64le-unknown-linux-gnu" +[ppc64.powerpc64le] +COMMON_FLAGS = "-O2 -pipe" +CHOST = "powerpc64le-unknown-linux-gnu" + [ppc.g3] CHOST = "powerpc-unknown-linux-gnu" COMMON_FLAGS = "-O2 -mcpu=G3 -mtune=G3 -pipe" @@ -68,3 +76,6 @@ USE = [ "altivec",] CHOST = "powerpc-unknown-linux-gnu" COMMON_FLAGS = "-O2 -mcpu=powerpc -mtune=powerpc -pipe" +[ppc.powerpc] +CHOST = "powerpc-unknown-linux-gnu" +COMMON_FLAGS = "-O2 -mcpu=powerpc -mtune=powerpc -pipe" From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id F2C2C138359 for ; Wed, 21 Oct 2020 17:58:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6B185E099F; Wed, 21 Oct 2020 17:58:53 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 18BC2E0999 for ; Wed, 21 Oct 2020 17:58:53 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 530B0340D85 for ; Wed, 21 Oct 2020 17:58:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 270CD33A for ; Wed, 21 Oct 2020 17:58:49 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1603303092.3be3ac842c2a97bd6f60e133591414114c5d60e2.mattst88@gentoo> Subject: [gentoo-commits] proj/catalyst:master commit in: arch/ X-VCS-Repository: proj/catalyst X-VCS-Files: arch/ppc.toml X-VCS-Directories: arch/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 3be3ac842c2a97bd6f60e133591414114c5d60e2 X-VCS-Branch: master Date: Wed, 21 Oct 2020 17:58:49 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 6fa737ae-a341-497c-8ca0-55dee46e2c4b X-Archives-Hash: 2ab4a6c58d0de479158f24c146ec8bd0 Message-ID: <20201021175849.OoWIosT3yS5xQPK8fOJvtiUW2mYdD0PEwgsVmdCf-2w@z> commit: 3be3ac842c2a97bd6f60e133591414114c5d60e2 Author: Georgy Yakovlev gentoo org> AuthorDate: Wed Oct 21 04:33:45 2020 +0000 Commit: Matt Turner gentoo org> CommitDate: Wed Oct 21 17:58:12 2020 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=3be3ac84 arch/ppc.toml: add CHOST based subarches if stage spec sets chost value, code in catalyst/base/stagebase.py#L76 will derive subarch value from the frontmost part of CHOST triple. if such subarch is not defined in toml file, build will fail. Add generic copy of base subarches defined in CHOST format. Signed-off-by: Georgy Yakovlev gentoo.org> Signed-off-by: Matt Turner gentoo.org> arch/ppc.toml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/arch/ppc.toml b/arch/ppc.toml index a3db919e..870c7647 100644 --- a/arch/ppc.toml +++ b/arch/ppc.toml @@ -46,10 +46,18 @@ USE = [ "altivec", "ibm",] COMMON_FLAGS = "-O2 -pipe" CHOST = "powerpc64-unknown-linux-gnu" +[ppc64.powerpc64] +COMMON_FLAGS = "-O2 -pipe" +CHOST = "powerpc64-unknown-linux-gnu" + [ppc64.ppc64le] COMMON_FLAGS = "-O2 -pipe" CHOST = "powerpc64le-unknown-linux-gnu" +[ppc64.powerpc64le] +COMMON_FLAGS = "-O2 -pipe" +CHOST = "powerpc64le-unknown-linux-gnu" + [ppc.g3] CHOST = "powerpc-unknown-linux-gnu" COMMON_FLAGS = "-O2 -mcpu=G3 -mtune=G3 -pipe" @@ -68,3 +76,6 @@ USE = [ "altivec",] CHOST = "powerpc-unknown-linux-gnu" COMMON_FLAGS = "-O2 -mcpu=powerpc -mtune=powerpc -pipe" +[ppc.powerpc] +CHOST = "powerpc-unknown-linux-gnu" +COMMON_FLAGS = "-O2 -mcpu=powerpc -mtune=powerpc -pipe" From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D8FDC138359 for ; Thu, 29 Oct 2020 21:00:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4B7DCE0903; Thu, 29 Oct 2020 21:00:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 329B3E0903 for ; Thu, 29 Oct 2020 21:00:44 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1E563340E23 for ; Thu, 29 Oct 2020 21:00:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 81F783D7 for ; Thu, 29 Oct 2020 21:00:40 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1603303092.3be3ac842c2a97bd6f60e133591414114c5d60e2.mattst88@gentoo> Subject: [gentoo-commits] proj/catalyst:wip/mattst88 commit in: arch/ X-VCS-Repository: proj/catalyst X-VCS-Files: arch/ppc.toml X-VCS-Directories: arch/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 3be3ac842c2a97bd6f60e133591414114c5d60e2 X-VCS-Branch: wip/mattst88 Date: Thu, 29 Oct 2020 21:00:40 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: ce2a2179-379e-4b65-bf4f-ea5c039f9839 X-Archives-Hash: 25812f49009ed0ace9ce8ea6fd9371c2 Message-ID: <20201029210040.dPVRme-NUBkcwzuMTnlaclNKjn2DVAExFbJv-maoVck@z> commit: 3be3ac842c2a97bd6f60e133591414114c5d60e2 Author: Georgy Yakovlev gentoo org> AuthorDate: Wed Oct 21 04:33:45 2020 +0000 Commit: Matt Turner gentoo org> CommitDate: Wed Oct 21 17:58:12 2020 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=3be3ac84 arch/ppc.toml: add CHOST based subarches if stage spec sets chost value, code in catalyst/base/stagebase.py#L76 will derive subarch value from the frontmost part of CHOST triple. if such subarch is not defined in toml file, build will fail. Add generic copy of base subarches defined in CHOST format. Signed-off-by: Georgy Yakovlev gentoo.org> Signed-off-by: Matt Turner gentoo.org> arch/ppc.toml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/arch/ppc.toml b/arch/ppc.toml index a3db919e..870c7647 100644 --- a/arch/ppc.toml +++ b/arch/ppc.toml @@ -46,10 +46,18 @@ USE = [ "altivec", "ibm",] COMMON_FLAGS = "-O2 -pipe" CHOST = "powerpc64-unknown-linux-gnu" +[ppc64.powerpc64] +COMMON_FLAGS = "-O2 -pipe" +CHOST = "powerpc64-unknown-linux-gnu" + [ppc64.ppc64le] COMMON_FLAGS = "-O2 -pipe" CHOST = "powerpc64le-unknown-linux-gnu" +[ppc64.powerpc64le] +COMMON_FLAGS = "-O2 -pipe" +CHOST = "powerpc64le-unknown-linux-gnu" + [ppc.g3] CHOST = "powerpc-unknown-linux-gnu" COMMON_FLAGS = "-O2 -mcpu=G3 -mtune=G3 -pipe" @@ -68,3 +76,6 @@ USE = [ "altivec",] CHOST = "powerpc-unknown-linux-gnu" COMMON_FLAGS = "-O2 -mcpu=powerpc -mtune=powerpc -pipe" +[ppc.powerpc] +CHOST = "powerpc-unknown-linux-gnu" +COMMON_FLAGS = "-O2 -mcpu=powerpc -mtune=powerpc -pipe"