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
The entire std crate assumes that AtomicUsize exists and supports all types of atomic operations (compare_exchange). If your target does not support atomic operations then you cannot use std and must use core and alloc instead.
This crate assumes that all targets building std, and therefore this crate support atomic operations because of the usage in the feature cache: https://github.com/rust-lang/stdarch/blob/master/crates/std_detect/src/detect/cache.rs#L8. The target this was spotted on was riscv32-imc (esp32c3) espressif/rust-esp32-example#3.
The text was updated successfully, but these errors were encountered: