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 5D02E1581D3 for ; Tue, 28 May 2024 10:52:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6E853E2A27; Tue, 28 May 2024 10:52:45 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 511FEE2A27 for ; Tue, 28 May 2024 10:52:45 +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 693B733BE32 for ; Tue, 28 May 2024 10:52:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9B57A1BD9 for ; Tue, 28 May 2024 10:52:42 +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: <1716893552.5d3f0072cd3c47fbb78cfc6a348b40b512019352.dilfridge@gentoo> Subject: [gentoo-commits] proj/catalyst:master commit in: arch/ X-VCS-Repository: proj/catalyst X-VCS-Files: arch/loong.toml X-VCS-Directories: arch/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas K. Hüttel X-VCS-Revision: 5d3f0072cd3c47fbb78cfc6a348b40b512019352 X-VCS-Branch: master Date: Tue, 28 May 2024 10:52:42 +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: d9f82275-41c0-4bc1-9123-18d65029bf8f X-Archives-Hash: deb9f04a9eca2efcdca3a682a9dbbd2d commit: 5d3f0072cd3c47fbb78cfc6a348b40b512019352 Author: Andreas K. Hüttel gentoo org> AuthorDate: Tue May 28 10:51:17 2024 +0000 Commit: Andreas K. Hüttel gentoo org> CommitDate: Tue May 28 10:52:32 2024 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=5d3f0072 Fix loongarch -march to baseline With gcc-14, the default was quietly raised to include vector extensions. This makes our stages explode on first-gen hardware... Signed-off-by: Andreas K. Hüttel gentoo.org> arch/loong.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/loong.toml b/arch/loong.toml index 7ff92c03..2334c84b 100644 --- a/arch/loong.toml +++ b/arch/loong.toml @@ -1,4 +1,4 @@ [loong.loong] -COMMON_FLAGS = " -pipe -O2" +COMMON_FLAGS = " -pipe -O2 -march=loongarch64 " CHOST = "loongarch64-unknown-linux-gnu" 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 68DE6159C9B for ; Fri, 9 Aug 2024 19:34:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8E3BBE2B76; Fri, 9 Aug 2024 19:34:09 +0000 (UTC) Received: from smtp.gentoo.org (mail.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 49F6DE2B77 for ; Fri, 9 Aug 2024 19:34:09 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 821793430F1 for ; Fri, 9 Aug 2024 19:34:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EDC431ECC for ; Fri, 9 Aug 2024 19:34:06 +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: <1716893552.5d3f0072cd3c47fbb78cfc6a348b40b512019352.dilfridge@gentoo> Subject: [gentoo-commits] proj/catalyst:dilfridge/qcow2 commit in: arch/ X-VCS-Repository: proj/catalyst X-VCS-Files: arch/loong.toml X-VCS-Directories: arch/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas K. Hüttel X-VCS-Revision: 5d3f0072cd3c47fbb78cfc6a348b40b512019352 X-VCS-Branch: dilfridge/qcow2 Date: Fri, 9 Aug 2024 19:34:06 +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: 729df7d9-bdc1-46e6-9c7d-e6cb99d2b145 X-Archives-Hash: 85e07c882ae9835ce28858426c0855e0 Message-ID: <20240809193406.irjCGUYOoa42kkAb6VgTWN2ymQKnmESMJlHlW6Nydg4@z> commit: 5d3f0072cd3c47fbb78cfc6a348b40b512019352 Author: Andreas K. Hüttel gentoo org> AuthorDate: Tue May 28 10:51:17 2024 +0000 Commit: Andreas K. Hüttel gentoo org> CommitDate: Tue May 28 10:52:32 2024 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=5d3f0072 Fix loongarch -march to baseline With gcc-14, the default was quietly raised to include vector extensions. This makes our stages explode on first-gen hardware... Signed-off-by: Andreas K. Hüttel gentoo.org> arch/loong.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/loong.toml b/arch/loong.toml index 7ff92c03..2334c84b 100644 --- a/arch/loong.toml +++ b/arch/loong.toml @@ -1,4 +1,4 @@ [loong.loong] -COMMON_FLAGS = " -pipe -O2" +COMMON_FLAGS = " -pipe -O2 -march=loongarch64 " CHOST = "loongarch64-unknown-linux-gnu"