Skip to content

Instantly share code, notes, and snippets.

@steveklabnik
Last active April 9, 2023 16:20
Show Gist options
  • Star 54 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save steveklabnik/d86491646b9e3e420f8806a286ec8e92 to your computer and use it in GitHub Desktop.
Save steveklabnik/d86491646b9e3e420f8806a286ec8e92 to your computer and use it in GitHub Desktop.
#![feature(lang_items)]
#![no_std]
#[no_mangle]
pub fn add_one(x: i32) -> i32 {
x + 1
}
// needed for no_std
#[lang = "panic_fmt"]
#[no_mangle]
pub extern fn rust_begin_panic(_msg: core::fmt::Arguments,
_file: &'static str,
_line: u32,
_column: u32) -> ! {
loop {}
}
$ rustup update nightly
$ rustup target add wasm32-unknown-unknown --toolchain nightly
$ rustc +nightly --target wasm32-unknown-unknown -O .\add.rs --crate-type=cdylib
$ cargo install --git https://github.com/alexcrichton/wasm-gc
$ wasm-gc .\add.wasm small-add.wasm
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>wasm wasm wasm</title>
<script>
fetch('small-add.wasm').then(response =>
response.arrayBuffer()
).then(bytes =>
WebAssembly.instantiate(bytes, {})
).then(results => {
alert(results.instance.exports.add_one(41));
});
</script>
</head>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment