You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This flag is a NOP on all targets except for 32bit ARM *hf targets. Given that the docs say "the current version is x86_64/amd64", it should be the case that this flag can be removed without any change in behavior. In particular, to my knowledge the comment indicating that this avoids the use of SSE on x86 targets is incorrect. See rust-lang/rust#129893 for more context.
The text was updated successfully, but these errors were encountered:
The soft-float target feature has some issues (see rust-lang/rust#116344), but it does have an effect, and our plan is to keep allowing it for the cases where it is sound and error only when it is unsound. (And it will always be usable in the JSON target spec, that is the safest place to set it.)
I stumbled upon this use of
-Csoft-float
:rust_os/Kernel/Makefile.old
Line 92 in dd31d84
This flag is a NOP on all targets except for 32bit ARM
*hf
targets. Given that the docs say "the current version is x86_64/amd64", it should be the case that this flag can be removed without any change in behavior. In particular, to my knowledge the comment indicating that this avoids the use of SSE on x86 targets is incorrect. See rust-lang/rust#129893 for more context.The text was updated successfully, but these errors were encountered: