Sfoglia il codice sorgente

fix: compilation error on x86 soft float targets

The breaking change of nightly rust 2025-02-04 caused
x86 soft float targets refusing to compile.

Fix it according to the solution provided in
`https://github.com/rust-lang/rust/issues/136544`
greatbridf 10 mesi fa
parent
commit
d0c3761bb3
1 ha cambiato i file con 2 aggiunte e 1 eliminazioni
  1. 2 1
      x86_64-unknown-none.json

+ 2 - 1
x86_64-unknown-none.json

@@ -11,5 +11,6 @@
     "linker": "rust-lld",
     "panic-strategy": "abort",
     "disable-redzone": true,
-    "features": "-mmx,-sse,+soft-float"
+    "features": "-mmx,-sse,+soft-float",
+    "rustc-abi": "x86-softfloat"
 }