From 704b2c3ce985c0d30218085d11f9016dab100f6f Mon Sep 17 00:00:00 2001 From: Tom Dohrmann Date: Tue, 4 Feb 2025 06:44:11 +0100 Subject: [PATCH] change rustc-abi in custom targets to x86-softfloat With the latest nightly, setting "+soft-float" in "features" is only allowed if "rustc-abi" is set to "x86-softfloat". --- i686-stage-3.json | 3 ++- x86_64-stage-4.json | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/i686-stage-3.json b/i686-stage-3.json index c89fac10..227250d4 100644 --- a/i686-stage-3.json +++ b/i686-stage-3.json @@ -17,5 +17,6 @@ "os": "none", "vendor": "unknown", "relocation-model": "static", - "features": "+soft-float,-sse,-mmx" + "features": "+soft-float,-sse,-mmx", + "rustc-abi": "x86-softfloat" } diff --git a/x86_64-stage-4.json b/x86_64-stage-4.json index 40102494..b2e7e997 100644 --- a/x86_64-stage-4.json +++ b/x86_64-stage-4.json @@ -18,5 +18,6 @@ "static-position-independent-executables": true, "target-pointer-width": "64", "relocation-model": "static", - "os": "none" + "os": "none", + "rustc-abi": "x86-softfloat" }