aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas K. Hüttel <dilfridge@gentoo.org>2024-05-28 12:51:17 +0200
committerAndreas K. Hüttel <dilfridge@gentoo.org>2024-05-28 12:52:32 +0200
commit5d3f0072cd3c47fbb78cfc6a348b40b512019352 (patch)
tree1a8891ad4425252e62f8cd21fa4cb954852d402c
parentbootloader-setup.sh: apply livecd/bootargs to dist-kernel as well (diff)
downloadcatalyst-5d3f0072cd3c47fbb78cfc6a348b40b512019352.tar.gz
catalyst-5d3f0072cd3c47fbb78cfc6a348b40b512019352.tar.bz2
catalyst-5d3f0072cd3c47fbb78cfc6a348b40b512019352.zip
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@gentoo.org>
-rw-r--r--arch/loong.toml2
1 files changed, 1 insertions, 1 deletions
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"