-
Notifications
You must be signed in to change notification settings - Fork 84
New issue
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
Some 32 bit platforms are not supported #201
Comments
Ah ! I realize it is actually supported, just for certain listed platforms: client_rust/src/metrics/counter.rs Lines 9 to 10 in bf196d7
I’ll make a PR for ESPs. |
#202 is a narrow fix, but I’d like a more general solution using |
#203 is the better fix but a bit of a bigger change (and I have not tested for regular PC class platforms, but I guess CI will). |
I just ran into this too -- in my case it's an armv5 system. https://github.com/rp-/tigo-exporter/issues/3 |
I’m trying to use this library on a 32-bit platform (an ESP32-C3 chip, RISC-V based, has alloc and std).
However when building I get this error:
My platform doesn’t support 64 bit atomics. Would there be a way to drop down to 32 bit atomics, perhaps with config detections, or a feature flag ?
The text was updated successfully, but these errors were encountered: