Jelajahi Sumber

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 bulan lalu
induk
melakukan
d0c3761bb3
1 mengubah file dengan 2 tambahan dan 1 penghapusan
  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"
 }