We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
These operations are not available on the thumbv6m-none-eabi target:
thumbv6m-none-eabi
f64 as i64
f64 as u64
f64 == f64
f64 > f64
f64 < f64
f32 as i64
f32 as u64
f32 == f32
f32 > f32
f32 < f32
and won't be available until these intrinsics:
__aeabi_dcmpeq
__aeabi_dcmpgt
__aeabi_dcmple
__aeabi_dcmplt
__aeabi_fcmpeq
__aeabi_fcmpgt
__aeabi_fcmple
__aeabi_fcmplt
are ported to Rust because compiler-rt doesn't provide an implementation of these for the thumbv6m-none-eabi target.
The text was updated successfully, but these errors were encountered:
Should this now be closed? #276 removed the thumbv6m config from the intrinsics example.
thumbv6m
Sorry, something went wrong.
This should be closed by now
No branches or pull requests
These operations are not available on the
thumbv6m-none-eabi
target:f64 as i64
f64 as u64
f64 == f64
f64 > f64
f64 < f64
f32 as i64
f32 as u64
f32 == f32
f32 > f32
f32 < f32
and won't be available until these intrinsics:
__aeabi_dcmpeq
__aeabi_dcmpgt
__aeabi_dcmple
__aeabi_dcmplt
__aeabi_fcmpeq
__aeabi_fcmpgt
__aeabi_fcmple
__aeabi_fcmplt
are ported to Rust because compiler-rt doesn't provide an implementation of these for the
thumbv6m-none-eabi
target.The text was updated successfully, but these errors were encountered: