From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1674274-garchives=archives.gentoo.org@lists.gentoo.org> 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 8B2A615808B for <garchives@archives.gentoo.org>; Fri, 27 Sep 2024 22:48:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 99232E29F6; Fri, 27 Sep 2024 22:48:11 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 7F6F3E29F6 for <gentoo-commits@lists.gentoo.org>; Fri, 27 Sep 2024 22:48:11 +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 B180A3430BE for <gentoo-commits@lists.gentoo.org>; Fri, 27 Sep 2024 22:48:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1C43BACC for <gentoo-commits@lists.gentoo.org>; Fri, 27 Sep 2024 22:48:09 +0000 (UTC) From: "Andreas K. Hüttel" <dilfridge@gentoo.org> 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" <dilfridge@gentoo.org> Message-ID: <1724077137.444e3cece1f51581178e0de2ab72f228a9e15bbe.dilfridge@gentoo> Subject: [gentoo-commits] proj/catalyst:dilfridge/qcow2 commit in: arch/ X-VCS-Repository: proj/catalyst X-VCS-Files: arch/x86.toml X-VCS-Directories: arch/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas K. Hüttel X-VCS-Revision: 444e3cece1f51581178e0de2ab72f228a9e15bbe X-VCS-Branch: dilfridge/qcow2 Date: Fri, 27 Sep 2024 22:48:09 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a725fac2-9e8d-4a4c-99bc-88ba283f1f8b X-Archives-Hash: 0b03e8c4242ae6b3ddee3236d88cea8f Message-ID: <20240927224809.-gJS9WvazshKcZvnyDAVoWlkDQ4vwotmoDTvqMy80M4@z> commit: 444e3cece1f51581178e0de2ab72f228a9e15bbe Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org> AuthorDate: Mon Aug 19 14:18:57 2024 +0000 Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org> CommitDate: Mon Aug 19 14:18:57 2024 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=444e3cec arch: add x86.i686-t64 subarch definition with appropriate *FLAGS Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org> arch/x86.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/arch/x86.toml b/arch/x86.toml index 24d4c547..fc131087 100644 --- a/arch/x86.toml +++ b/arch/x86.toml @@ -15,6 +15,10 @@ CHOST = "i586-pc-linux-gnu" [x86.i686] COMMON_FLAGS = "-O2 -march=i686 -pipe" +[x86.i686-t64] +COMMON_FLAGS = "-O2 -march=i686 -pipe -D_FILE_OFFSET_BITS=64 -D_TIME_BITS=64" +CHOST = "i686-pc_t64-linux-gnu" + [x86.pentium] COMMON_FLAGS = "-O2 -march=i586 -pipe" CHOST = "i586-pc-linux-gnu"