feat: support the wasm32-unknown-emscripten target - #8281
Open
guybedford wants to merge 3 commits into
Open
Conversation
guybedford
force-pushed
the
emscripten-target
branch
2 times, most recently
from
July 15, 2026 00:10
72ff20b to
6cc89cc
Compare
Darksonn
reviewed
Jul 15, 2026
Darksonn
reviewed
Jul 15, 2026
This was referenced Jul 15, 2026
guybedford
force-pushed
the
emscripten-target
branch
from
July 28, 2026 01:51
44ba412 to
f6527a5
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation
Tokio does not yet support the
wasm32-unknown-emscriptentarget, which is widely used in the WebAssembly ecosystem. This PR initiates a first step towards that.Solution
Supports the single-threaded
wasm32-unknown-emscriptenwithwasm32-unknown-unknownparity:sync,macros,io-util,rt,time, andtest-utilcompile and work.process/signalare compiled out (nofork/execor kernel signal delivery) and the multi_thread flavor is rejected.netremains unsupported (pending the Mio PR in tokio-rs/mio#1969).This is just an initial minimal target support PR, to follow-up on next with the JSPI-based parking and hosted event loop models afterwards. As such, it has no execution-model changes and no design decisions beyond existing Wasm target policy. A
block_onwhose future cannot resolve synchronously behaves as on the other single-threaded Wasm targets.CI runs the
sync/macrostest surface under Node.js, just likewasm-bindgen-test, and checks every supported feature combination for the target.//cc @Darksonn @Noah-Kennedy