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 .
This commit is contained in:
Philipp Oppermann
2025-02-10 11:16:14 +01:00
parent 2265ddecad
commit 688a21e4ed

View File

@@ -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"
}