This is an automated email from the ASF dual-hosted git repository.
xiaoxiang781216 pushed a commit to branch releases/13.0
in repository https://gitbox.apache.org/repos/asf/nuttx.git
The following commit(s) were added to refs/heads/releases/13.0 by this push:
new 586978b4166 tools/rust: Fix softfloat abi target spec name
586978b4166 is described below
commit 586978b41667688bbced5216bfefbcaf9cccb40f
Author: kay-lambdadelta <[email protected]>
AuthorDate: Mon Aug 10 17:49:11 2026 -0700
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 <[email protected]>
---
tools/i486-unknown-nuttx.json | 2 +-
tools/x86_64-unknown-nuttx.json | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/tools/i486-unknown-nuttx.json b/tools/i486-unknown-nuttx.json
index 93cd434185a..79f83e2413c 100644
--- a/tools/i486-unknown-nuttx.json
+++ b/tools/i486-unknown-nuttx.json
@@ -21,7 +21,7 @@
"os": "nuttx",
"position-independent-executables": false,
"relro-level": "full",
- "rustc-abi": "x86-softfloat",
+ "rustc-abi": "softfloat",
"stack-probes": {
"kind": "inline"
},
diff --git a/tools/x86_64-unknown-nuttx.json b/tools/x86_64-unknown-nuttx.json
index d12fecb8a74..d7eacb31001 100644
--- a/tools/x86_64-unknown-nuttx.json
+++ b/tools/x86_64-unknown-nuttx.json
@@ -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"
},