wasm2c

Convert a file from the WebAssembly binary format to a C source file and header. More information: <https://github.com/WebAssembly/wabt>.

Install

All systems
curl cmd.cat/wasm2c.sh
Debian Debian
apt-get install wabt
Ubuntu
apt-get install wabt
Arch Arch Linux
pacman -S wabt
image/svg+xml Kali Linux
apt-get install wabt
Windows (WSL2)
sudo apt-get update sudo apt-get install wabt
OS X
brew install wabt

Convert a file from the WebAssembly binary format to a C source file and header. More information: <https://github.com/WebAssembly/wabt>.

  • Convert a file to a C source file and header and display it to the console:
    wasm2c file.wasm
  • Write the output to a given file (`file.h` gets additionally generated):
    wasm2c file.wasm -o file.c

© tl;dr; authors and contributors