From 5d3f0072cd3c47fbb78cfc6a348b40b512019352 Mon Sep 17 00:00:00 2001 From: "Andreas K. Hüttel" Date: Tue, 28 May 2024 12:51:17 +0200 Subject: Fix loongarch -march to baseline MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- 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" -- cgit v1.2.3-65-gdbad