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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 60D8C158020 for ; Mon, 14 Nov 2022 14:11:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 81290E084A; Mon, 14 Nov 2022 14:11:52 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 68C26E085E for ; Mon, 14 Nov 2022 14:11:52 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id F2C6833BF41 for ; Mon, 14 Nov 2022 14:11:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 619BD625 for ; Mon, 14 Nov 2022 14:11:49 +0000 (UTC) From: "Andreas K. Hüttel" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas K. Hüttel" Message-ID: <1668434995.d51e8f18a3e0653d29aeb31310b3525a942db031.dilfridge@gentoo> Subject: [gentoo-commits] proj/catalyst:master commit in: arch/ X-VCS-Repository: proj/catalyst X-VCS-Files: arch/amd64.toml X-VCS-Directories: arch/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas K. Hüttel X-VCS-Revision: d51e8f18a3e0653d29aeb31310b3525a942db031 X-VCS-Branch: master Date: Mon, 14 Nov 2022 14:11: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: b8c697e8-20ee-445b-b91a-7c2db0b28490 X-Archives-Hash: 66efeb5ad3e62210f4043154cd8da44b commit: d51e8f18a3e0653d29aeb31310b3525a942db031 Author: Andreas K. Hüttel gentoo org> AuthorDate: Mon Nov 14 14:09:55 2022 +0000 Commit: Andreas K. Hüttel gentoo org> CommitDate: Mon Nov 14 14:09:55 2022 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=d51e8f18 amd64 definition: add a subarch "x86_64" identical to "amd64" When CHOST is given in the spec file, the subarch is extracted from the triplet. And that's x86_64 here... Signed-off-by: Andreas K. Hüttel gentoo.org> arch/amd64.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/arch/amd64.toml b/arch/amd64.toml index 8347cd7e..7cf0bce2 100644 --- a/arch/amd64.toml +++ b/arch/amd64.toml @@ -1,6 +1,9 @@ [amd64.amd64] COMMON_FLAGS = "-O2 -pipe" +[amd64.x86_64] +COMMON_FLAGS = "-O2 -pipe" + [amd64.k8] COMMON_FLAGS = "-O2 -march=k8 -pipe" CPU_FLAGS_X86 = [ "mmx", "mmxext", "3dnow", "3dnowext", "sse", "sse2",]