From 4d308cbfb2ee058f33b72c0c64d42d23a765dd3e Mon Sep 17 00:00:00 2001 From: kay-lambdadelta Date: Mon, 10 Aug 2026 17:49:11 -0700 Subject: [PATCH] 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 --- 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 93cd434185a31..79f83e2413cdf 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 d12fecb8a7479..d7eacb310014e 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" },