#979665 Please package libstd-rust-dev-emscripten

#979665#5
Date:
2021-01-09 21:16:01 UTC
From:
To:
Due to issues with the way rustc interacts with LLVM-wasm [1], building rust packages with
--target=wasm-unknown-{wasi,unknown} is not practical if any C code is to be used in the same binary (which is common). 
Instead, wasm-unknown-emscripten is the only option, however not librust-std is packaged for emscripten. rustup's
emscripten is broken on debian testing due to them shipping their own LLVM, so that is also not a practical solution for
most users wishing to link C and rust code in any context, let alone WASM.


[1] https://github.com/rustwasm/team/issues/291

#979665#10
Date:
2021-06-14 18:02:00 UTC
From:
To:
This is no longer the case. As of https://github.com/rust-lang/rust/pull/79998 (rustc 1.51) you can now link C and rust
code with the wasm32-wasi target.

#979665#15
Date:
2021-06-15 20:40:54 UTC
From:
To:
I'm not exactly an expert on the subject, but my understanding roughly matches yours. wasi is newer and not yet 100%
feature complete, but once it is my understanding is that it should/will be a much better replacement for emscripten.

Matt

#979665#20
Date:
2021-06-15 20:36:38 UTC
From:
To:
Thanks for the update.

Is there much point supporting rust emscripten at all? Apart from this C-linking thing that is now apparently fixed, what is the actual advantage (or even, point) of it?

From what I understand from [1] it seems that emscripten does for C what wasm32-wasi and/or web-sys, js-sys already does for rust?

X

[1] https://stackoverflow.com/questions/64690937/what-is-the-difference-between-emscripten-and-clang-in-terms-of-webassembly-comp

Matt Corallo: