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
Currently, on x86_64 baremetal targets and UEFI, compiling curve25519-dalek fails with the error message:
rustc-LLVM ERROR: Do not know how to split the result of this operator!
this is because these targets disable FPU support (target features -mmx,-sse,+soft-float).
It would be nice to have some sort of opt-out like sha2’s force-soft feature.
The text was updated successfully, but these errors were encountered:
Related to #552
Currently, on x86_64 baremetal targets and UEFI, compiling curve25519-dalek fails with the error message:
this is because these targets disable FPU support (target features -mmx,-sse,+soft-float).
It would be nice to have some sort of opt-out like
sha2
’sforce-soft
feature.The text was updated successfully, but these errors were encountered: