A template to use Rust with Emscripten
Find a file
2024-09-18 19:31:38 +09:00
rust_src Init commit template for emscripten Rust 2024-09-18 19:22:56 +09:00
src Init commit template for emscripten Rust 2024-09-18 19:22:56 +09:00
.gitignore Init commit template for emscripten Rust 2024-09-18 19:22:56 +09:00
Makefile Rename game.html to my_project.html in Makefile 2024-09-18 19:31:38 +09:00
README.md Fix README.md 2024-09-18 19:30:41 +09:00
UNLICENSE.txt Add UNLICENSE.txt 2024-09-18 19:24:08 +09:00

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.)

  1. Clone https://github.com/emscripten-core/emsdk to ${HOME}/git/emsdk.
  2. Set up emsdk with ${HOME}/git/emsdk/emsdk install latest and ${HOME}/git/emsdk/emsdk activate latest.
  3. Set up rustup.
  4. Get the wasm32-unknown-emscripten target with rustup target add wasm32-unknown-emscripten.

Build

Just run make in the root of this project.