tools/rust: Fix softfloat abi target spec name

Rename abi "x86-softfloat" to just "softfloat" to enable compatibility
with newer rust nightly versions.

Rust recently changed the name of the softfloat abi to one more unified
across targets, and more recently, removed the compat alias.

Signed-off-by: Kay Lambdadelta <lambdadeltakay@proton.me>
This commit is contained in:
kay-lambdadelta 2026-08-10 17:49:11 -07:00 committed by Xiang Xiao
parent f594708b9f
commit 586978b416
2 changed files with 2 additions and 2 deletions

View file

@ -21,7 +21,7 @@
"os": "nuttx",
"position-independent-executables": false,
"relro-level": "full",
"rustc-abi": "x86-softfloat",
"rustc-abi": "softfloat",
"stack-probes": {
"kind": "inline"
},

View file

@ -19,7 +19,7 @@
"plt-by-default": false,
"position-independent-executables": true,
"relro-level": "full",
"rustc-abi": "x86-softfloat",
"rustc-abi": "softfloat",
"stack-probes": {
"kind": "inline"
},