This is an automated email from the ASF dual-hosted git repository.

jerpelea pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx.git


The following commit(s) were added to refs/heads/master by this push:
     new ebb9d80befb tools/rust: Fix softfloat abi target spec name
ebb9d80befb is described below

commit ebb9d80befbf342859b1a6b712f667a3b8f87268
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"
   },

Reply via email to