-
Notifications
You must be signed in to change notification settings - Fork 589
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 compilation breaks if target actually doesn't have std #493
Comments
tried it and it does fail. All libs have Do you have maybe solution for this? |
ruint does not have support for |
I have spent some time trying to track down the origin of
It seems the libraries with
Unfortunately this analysis relied on crates having an |
It seems that |
Here is transition to |
fixed in multiple transitions but last PR was this #669 |
Tried to build with all features disabled (
"std"
among them) for targetriscv32imc-unknown-none-elf
, which actually doesn't havestd
, and compilation fails in many libraries that does requirestd
.I may be missing something, but I don't think there is a point in having a library supporting
#![no-std]
if their mandatory dependencies are only available onstd
-enabled targets, so I guess this is a bug?The text was updated successfully, but these errors were encountered: