-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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
Add wasm32-unknown-emscripten platform support document #131582
Conversation
rustbot has assigned @GuillaumeGomez. Use |
Some changes occurred in src/doc/rustc/src/platform-support cc @Noratrieb |
This comment has been minimized.
This comment has been minimized.
I tried to figure this out before and it seems like we don't really have one. It doesn't seem to have been much of a problem for this target (presumably overlap with the other wasm targets helps) but we should definitely try to find somebody willing to put their name here. Of course this doesn't block improving the docs, this is needed regardless. @hoodmane and @tlively you seem to have done a lot of the work for this target, any interest in being added as a target maintainer? The bar is very low, it mostly means you are willing to be pinged when anyone has emscripten-specific questions. |
src/doc/rustc/src/platform-support/wasm32-unknown-emscripten.md
Outdated
Show resolved
Hide resolved
src/doc/rustc/src/platform-support/wasm32-unknown-emscripten.md
Outdated
Show resolved
Hide resolved
src/doc/rustc/src/platform-support/wasm32-unknown-emscripten.md
Outdated
Show resolved
Hide resolved
I would like to be pinged with emscripten related questions. I would also suggest @sbc100 should be kept in the loop. |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
I'm unfortunately not sure which links are broken, at least on GitHub all new links on my branch work |
src/doc/rustc/src/platform-support/wasm32-unknown-emscripten.md
Outdated
Show resolved
Hide resolved
src/doc/rustc/src/platform-support/wasm32-unknown-emscripten.md
Outdated
Show resolved
Hide resolved
src/doc/rustc/src/platform-support/wasm32-unknown-emscripten.md
Outdated
Show resolved
Hide resolved
src/doc/rustc/src/platform-support/wasm32-unknown-emscripten.md
Outdated
Show resolved
Hide resolved
This comment has been minimized.
This comment has been minimized.
src/doc/rustc/src/platform-support/wasm32-unknown-emscripten.md
Outdated
Show resolved
Hide resolved
src/doc/rustc/src/platform-support/wasm32-unknown-emscripten.md
Outdated
Show resolved
Hide resolved
src/doc/rustc/src/platform-support/wasm32-unknown-emscripten.md
Outdated
Show resolved
Hide resolved
src/doc/rustc/src/platform-support/wasm32-unknown-emscripten.md
Outdated
Show resolved
Hide resolved
src/doc/rustc/src/platform-support/wasm32-unknown-emscripten.md
Outdated
Show resolved
Hide resolved
src/doc/rustc/src/platform-support/wasm32-unknown-emscripten.md
Outdated
Show resolved
Hide resolved
src/doc/rustc/src/platform-support/wasm32-unknown-emscripten.md
Outdated
Show resolved
Hide resolved
src/doc/rustc/src/platform-support/wasm32-unknown-emscripten.md
Outdated
Show resolved
Hide resolved
I have no idea either. Is there any way to get the HTML files from CI to see which links are broken or do I need to investigate in a local build? |
I’d also be interested in being pinged as well (for both wasm in general and emscripten). Should this be two groups or one with an alias (if that’s possible)? The docs show how to join one, how can a new group be created? |
src/doc/rustc/src/platform-support/wasm32-unknown-emscripten.md
Outdated
Show resolved
Hide resolved
The forge docs has steps for this: https://forge.rust-lang.org/compiler/notification-groups.html. It presently says it will need an MCP to create the ping groups (... and if you file one I'll just immediately second it anyway), but I'll ask the T-compiler leads if this is still current policy (i.e. if the MCP is needed). |
Just to be explicit, @sbc100, can you confirm that you are willing to be added as a target maintainer for the |
@juntyr I think having a general-purpose wasm group and also an emscripten-specific ping group separately is a good idea. You'll need to create two marker teams over at the team repo. See https://forge.rust-lang.org/compiler/notification-groups.html#notification-groups for the steps. Previous example PR: rust-lang/team#670. The forge docs says a MCP is required, but I discussed the ping group matter with @davidtwco, one of our T-compiler co-leads, and we determined that a MCP is not required for this situation, so you can go ahead with the team PRs without needing a MCP. |
src/doc/rustc/src/platform-support/wasm32-unknown-emscripten.md
Outdated
Show resolved
Hide resolved
I'm looking at the linkcheck failures to see if I can repro them locally. |
This comment has been minimized.
This comment has been minimized.
@juntyr linkchecker is failing because we need to declare the page exists in |
@juntyr thanks, this looks mostly ready to merge. Can you please squash the commits into one? Also, do you have contact with @sbc100, because I would like explicit confirmation from @sbc100 that they are happy to be listed as a target maintainer. If you don't want to wait for their confirmation, then you can also drop them from maintainer list for now, and ask them to open a PR to add themselves in a follow-up PR. |
Co-authored-by: Hood Chatham <[email protected]> Co-authored-by: Alex Crichton <[email protected]> Co-authored-by: Kleis Auke Wolthuizen <[email protected]>
fef9b29
to
0804d1b
Compare
@jieyouxu I've squashed the commits. I had hoped we would get an answer from @sbc100, but since that's not the case I've removed @sbc100 from the maintainer list for the |
Thanks. |
Rollup of 10 pull requests Successful merges: - rust-lang#131582 (Add wasm32-unknown-emscripten platform support document) - rust-lang#131694 (Make fuchsia-test-runner.py compatible with new JSON output from llvm-readelf) - rust-lang#131700 (Fix match_same_arms in stable_mir) - rust-lang#131712 (Mark the unstable LazyCell::into_inner const) - rust-lang#131746 (Relax a memory order in `once_box`) - rust-lang#131754 (Don't report bivariance error when nesting a struct with field errors into another struct) - rust-lang#131760 (llvm: Match aarch64 data layout to new LLVM layout) - rust-lang#131764 (Fix unnecessary nesting in run-make test output directories) - rust-lang#131766 (Add mailmap entry for my dev-desktop setup) - rust-lang#131771 (Handle gracefully true/false in `cfg(target(..))` compact) r? `@ghost` `@rustbot` modify labels: rollup
Rollup merge of rust-lang#131582 - juntyr:emscripten-platform-support, r=jieyouxu Add wasm32-unknown-emscripten platform support document This PR adds the platform support document for wasm32-unknown-emscripten, and adds a warning about breaks in Emscripten ABI compatibility (see rust-lang#131467). I mostly based the document off the wasm32-unknown-unknown docs and some of the information may still be missing (e.g. who's the target maintainer) or outdated (e.g. the build requirements). I still hope that it provides a good starting point. r? `@workingjubilee`
This PR adds the platform support document for wasm32-unknown-emscripten, and adds a warning about breaks in Emscripten ABI compatibility (see #131467).
I mostly based the document off the wasm32-unknown-unknown docs and some of the information may still be missing (e.g. who's the target maintainer) or outdated (e.g. the build requirements). I still hope that it provides a good starting point.
r? @workingjubilee