-
Notifications
You must be signed in to change notification settings - Fork 63
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
#![no_std] support #90
Comments
leaving this to @philipc as they said they had done work on this. |
Dependencies need to be
To do:
An alternative to lazy-init is https://github.com/indiv0/lazycell, but it doesn't have |
cpp_demangle supports As for lazy-init: it uses a mutex internally, which doesn't seem to exist on libcore. lazycell on the other hand uses atomics, which do exist on libcore. So it should be easier to port lazycell. |
Found one more: Storyyeller/stable_deref_trait#2. This will need a gimli update too. Pretty sure that's the last of them though. |
Oh, probably this PR of mine won't compile successfully then: gimli-rs/gimli#306 |
In order for addr2line to be integrated into libstd, it requires support for the
#![no_std]
environment. This also helps with integration into embedded programs and OS kernels.The text was updated successfully, but these errors were encountered: