-
Hi all. Hope all is well. I'm encountering an error when trying to use It looks like error[E0432]: unresolved imports `core::sync::atomic::AtomicI64`, `core::sync::atomic::AtomicU64`
--> C:\Users\stefa\.cargo\registry\src\index.crates.io-6f17d22bba15001f\radium-0.7.0\src\lib.rs:53:34
|
53 | use core::sync::atomic::{AtomicI64, AtomicU64};
| ^^^^^^^^^ ^^^^^^^^^ no `AtomicU64` in `sync::atomic`
| |
| no `AtomicI64` in `sync::atomic`
|
help: a similar name exists in the module
|
53 | use core::sync::atomic::{AtomicI32, AtomicU64};
| ~~~~~~~~~
help: a similar name exists in the module
|
53 | use core::sync::atomic::{AtomicI64, AtomicU32};
| ~~~~~~~~~
Since I am not very familiar with rust, I have no idea what this error is supposed to mean, even after a google search. I'm not sure where to open a issue (and if this is an issue at all?), here or on the hal's repo. Any help would be greatly appreciated. Kind regards, Steps to reproduce:
I'm getting the same error for |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
This has been sorted, sorry. The |
Beta Was this translation helpful? Give feedback.
This has been sorted, sorry. The
radium
crate doesn't support the xtensa architecture.See ferrilab/ferrilab#1