Skip to content
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

once_cell::race does not compile on ARM #155

Closed
tkaitchuck opened this issue Jul 8, 2021 · 3 comments · Fixed by #165
Closed

once_cell::race does not compile on ARM #155

tkaitchuck opened this issue Jul 8, 2021 · 3 comments · Fixed by #165

Comments

@tkaitchuck
Copy link

tkaitchuck commented Jul 8, 2021

These four lines: 1, 2, 3, 4 fail to compile on ARM because on ARM the AtomicUsize lacks a compare_exchange method.
It may be possible to work around this with a load and a store and a loop.

@matklad
Copy link
Owner

matklad commented Jul 8, 2021

Do you know which cfg is used to detect if it is available for a particular target?

@tkaitchuck
Copy link
Author

The only way I am aware of is by using target_arch = "arm". I don't know if there is a list somewhere of which architectures have which features.

@taiki-e
Copy link

taiki-e commented Aug 9, 2021

FYI:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants