-
Notifications
You must be signed in to change notification settings - Fork 634
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
Support targets that lack atomics #622
Labels
Comments
ealasu
pushed a commit
to ealasu/futures-rs
that referenced
this issue
Oct 29, 2017
ealasu
added a commit
to ealasu/futures-rs
that referenced
this issue
Oct 29, 2017
Closed
With the closing of #627 I'm going to close this as well |
I recently ran into this issue while trying to test out the |
I would accept a patch to support the portable-atomic. |
Opened #2670 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This crate fails to compile on targets that lack atomic primitives, like thumbv6m-none-eabi. Would it make sense to support such targets? One option might be to add a feature called "use_atomic" that's enabled by default, and add
#[cfg(feature = use_atomic)]
to all the modules that need atomics.The text was updated successfully, but these errors were encountered: