-
Notifications
You must be signed in to change notification settings - Fork 161
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
has_std is disabled on WSL #201
Comments
Thanks for the report. Do you have any more info about how it works on WSL? Your conclusion is certainly likely given the problems we've had with this. Already on the 2.0 list. |
No idea. |
The precise error I had in WSL is this (compiling
The culprit is that I was building on the mountpoint for the host FS, which doesn't have write access by default:
This is output from the build script by |
If it doesn't have write access, how did the temp |
Got me... How did anything get written to allow most of the crate to build successfully? I'm not sure if WSL is doing something magical with FS permissions or if there is a bug. Using the WSL VHD is much less problematic. |
Also, FWIW the |
We did add a |
Ah I missed that |
Duplicate of #184 I'll file this as a duplicate. On track for 2.0. |
I think you should just handle nostd like everyone else: default enabled std feature so we can opt out of std via
default-features = false
The text was updated successfully, but these errors were encountered: