-
Notifications
You must be signed in to change notification settings - Fork 12.9k
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
Emscripten targets are Unix targets #38598
Conversation
r? @arielb1 (rust_highfive has picked a reviewer for you, use r? to override) |
I don't know how the error got onto master. It seems like bors would have caught that. |
@bors r+ |
📌 Commit 31bda23 has been approved by |
Travis failed with some pretty relevant errors. |
Is there a possibility that it breaks code that does |
Just fixing a compile error
@bors: r+ p=1 |
📌 Commit f262eea has been approved by |
Emscripten targets are Unix targets I suspect this will fix the errors compiling libc https://buildbot.rust-lang.org/builders/auto-linux-rustbuild-cross-opt/builds/689/steps/compile/logs/stdio that are occurring on every PR. Emscripten is basically a posix emulation layer for the web and I consider it a Unix. cc @alexcrichton
Turns out we're not gating on the relevant builder in homu, we just haven't regressed it until now. Hurray! |
I suspect this will fix the errors compiling libc https://buildbot.rust-lang.org/builders/auto-linux-rustbuild-cross-opt/builds/689/steps/compile/logs/stdio that are occurring on every PR.
Emscripten is basically a posix emulation layer for the web and I consider it a Unix.
cc @alexcrichton