From 688a21e4ed0345c4d08aa32fd9f02866454b8521 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Mon, 10 Feb 2025 11:16:14 +0100 Subject: [PATCH] Set `rustc-abi: x86-softfloat` in target JSON This additional field is required by the Rust compiler since https://github.com/rust-lang/rust/pull/136146 . --- x86_64-blog_os.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/x86_64-blog_os.json b/x86_64-blog_os.json index c3b00f3bb..9879eb294 100644 --- a/x86_64-blog_os.json +++ b/x86_64-blog_os.json @@ -11,5 +11,6 @@ "linker": "rust-lld", "panic-strategy": "abort", "disable-redzone": true, - "features": "-mmx,-sse,+soft-float" + "features": "-mmx,-sse,+soft-float", + "rustc-abi": "x86-softfloat" } \ No newline at end of file