* [gentoo-commits] proj/catalyst:dilfridge/qcow2 commit in: arch/
2024-05-28 10:52 [gentoo-commits] proj/catalyst:master " Andreas K. Hüttel
@ 2024-08-09 19:34 ` Andreas K. Hüttel
0 siblings, 0 replies; 4+ messages in thread
From: Andreas K. Hüttel @ 2024-08-09 19:34 UTC (permalink / raw
To: gentoo-commits
commit: 5d3f0072cd3c47fbb78cfc6a348b40b512019352
Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Tue May 28 10:51:17 2024 +0000
Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> 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 <dilfridge <AT> 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"
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] proj/catalyst:dilfridge/qcow2 commit in: arch/
2024-07-29 20:24 [gentoo-commits] proj/catalyst:master " Andreas K. Hüttel
@ 2024-08-09 19:34 ` Andreas K. Hüttel
0 siblings, 0 replies; 4+ messages in thread
From: Andreas K. Hüttel @ 2024-08-09 19:34 UTC (permalink / raw
To: gentoo-commits
commit: 8a0f56e75886f93fe6093187dfe8ca361e868658
Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 29 20:23:44 2024 +0000
Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Mon Jul 29 20:24:20 2024 +0000
URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=8a0f56e7
Remove CHOST setting for s390x (mostly for testing, but also unnecessary)
Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
arch/s390.toml | 1 -
1 file changed, 1 deletion(-)
diff --git a/arch/s390.toml b/arch/s390.toml
index 875fe8e1..854f4822 100644
--- a/arch/s390.toml
+++ b/arch/s390.toml
@@ -8,5 +8,4 @@ CHOST = "s390-ibm-linux-gnu"
[s390x.s390x]
COMMON_FLAGS = "-O2 -pipe"
-CHOST = "s390x-ibm-linux-gnu"
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] proj/catalyst:master commit in: arch/
@ 2024-08-19 14:19 Andreas K. Hüttel
2024-09-27 22:48 ` [gentoo-commits] proj/catalyst:dilfridge/qcow2 " Andreas K. Hüttel
0 siblings, 1 reply; 4+ messages in thread
From: Andreas K. Hüttel @ 2024-08-19 14:19 UTC (permalink / raw
To: gentoo-commits
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"
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] proj/catalyst:dilfridge/qcow2 commit in: arch/
2024-08-19 14:19 [gentoo-commits] proj/catalyst:master commit in: arch/ Andreas K. Hüttel
@ 2024-09-27 22:48 ` Andreas K. Hüttel
0 siblings, 0 replies; 4+ messages in thread
From: Andreas K. Hüttel @ 2024-09-27 22:48 UTC (permalink / raw
To: gentoo-commits
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"
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-09-27 22:48 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-19 14:19 [gentoo-commits] proj/catalyst:master commit in: arch/ Andreas K. Hüttel
2024-09-27 22:48 ` [gentoo-commits] proj/catalyst:dilfridge/qcow2 " Andreas K. Hüttel
-- strict thread matches above, loose matches on Subject: below --
2024-07-29 20:24 [gentoo-commits] proj/catalyst:master " Andreas K. Hüttel
2024-08-09 19:34 ` [gentoo-commits] proj/catalyst:dilfridge/qcow2 " Andreas K. Hüttel
2024-05-28 10:52 [gentoo-commits] proj/catalyst:master " Andreas K. Hüttel
2024-08-09 19:34 ` [gentoo-commits] proj/catalyst:dilfridge/qcow2 " Andreas K. Hüttel
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox