-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Factor out platforms for which libc is empty #1126
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
Conversation
(rust_highfive has picked a reviewer for you, use r? to override) |
4033870
to
d7a3541
Compare
d7a3541
to
eb6ff66
Compare
Note that |
r=me, but looks like ci may be broken? We'll fix this eventually for |
Yes, so summarizing the conversation from IRC, That is, So i'm going to keep this PR more or less as is until its merged, but at some point we might want to go from explicitly listing the non-supported target, to "somehow" only have items in the supported targets and be empty by default. |
☔ The latest upstream changes (presumably #1127) made this pull request unmergeable. Please resolve the merge conflicts. |
eb6ff66
to
cf4e35f
Compare
cf4e35f
to
d145731
Compare
@bors: r+ |
📌 Commit d145731 has been approved by |
Factor out platforms for which libc is empty This change shouldn't change any functionality. It just separates the platforms for which `libc` is currently empty (only `wasm32-unknown-unknown`), from those for which it isn't. This is a non-functional change.
☀️ Test successful - status-appveyor, status-travis |
I think this unfortunately breaks compilation of the wasm target in upstream rust-lang/rust, it turns out that the
compiled with
(it shouldn't try to link |
I believe #1129 fixes that though |
Damn, I'm so sorry. I was just going to ask whether that PR fixes it. |
No worries! I had no idea about this as well :) |
I'm trying to get |
This change shouldn't change any functionality. It just separates the platforms for which
libc
is currently empty (onlywasm32-unknown-unknown
), from those for which it isn't. This is a non-functional change.