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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D9E00158087 for ; Sun, 30 Jan 2022 20:43:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1BF162BC013; Sun, 30 Jan 2022 20:43:01 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 03BA42BC013 for ; Sun, 30 Jan 2022 20:43:01 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 02EF4342F48 for ; Sun, 30 Jan 2022 20:42:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6A1342C4 for ; Sun, 30 Jan 2022 20:42:57 +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: <1631383817.1a94eb5dd29e763e23f6276c191175722732ab16.mattst88@gentoo> Subject: [gentoo-commits] proj/catalyst:wip/mattst88 commit in: arch/ X-VCS-Repository: proj/catalyst X-VCS-Files: arch/arm64.toml X-VCS-Directories: arch/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 1a94eb5dd29e763e23f6276c191175722732ab16 X-VCS-Branch: wip/mattst88 Date: Sun, 30 Jan 2022 20:42:57 +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: 248b1108-5206-4d66-93ad-b6d36a5a79f0 X-Archives-Hash: 833d2eb953203f5ce8be577188a0467a commit: 1a94eb5dd29e763e23f6276c191175722732ab16 Author: Andreas K. Hüttel gentoo org> AuthorDate: Sat Sep 11 18:10:17 2021 +0000 Commit: Matt Turner gentoo org> CommitDate: Sat Sep 11 18:10:17 2021 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=1a94eb5d arm64 definition: add a subarch "aarch64" identical to "arm64" When CHOST is given in the spec file, the subarch is extracted from the triplet. Unfortunately that uses aarch64 instead of our arm64 ... Signed-off-by: Andreas K. Hüttel gentoo.org> arch/arm64.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/arch/arm64.toml b/arch/arm64.toml index 613b4e68..e139327f 100644 --- a/arch/arm64.toml +++ b/arch/arm64.toml @@ -2,3 +2,6 @@ COMMON_FLAGS = "-O2 -pipe" CHOST = "aarch64-unknown-linux-gnu" +[arm64.aarch64] +COMMON_FLAGS = "-O2 -pipe" +CHOST = "aarch64-unknown-linux-gnu"