A template to use Rust with Emscripten
rust_src | ||
src | ||
.gitignore | ||
Makefile | ||
README.md | ||
UNLICENSE.txt |
Emscripten Rust/C Template
This is a template for an emscripten project with a "Rust backend".
Setting up
(Note that this has only been tested in a Linux environment.)
- Clone
https://github.com/emscripten-core/emsdk
to${HOME}/git/emsdk
. - Set up
emsdk
with${HOME}/git/emsdk/emsdk install latest
and${HOME}/git/emsdk/emsdk activate latest
. - Set up
rustup
. - Get the
wasm32-unknown-emscripten
target withrustup add wasm32-unknown-emscripten
.
Build
Just run make
in the root of this project.