A WebAssembly (WASM) Interpreter with a focus on debugging licensed under the Apache 2.0 License.
wasmint requires a C++11 compiler (including STL) and CMake as build dependencies.
Make sure to pull all git submodules before the build:
git submodule init
git submodule update
To build wasmint on those systems with cmake and make by running:
cmake . && make
You can also run the tests by running ctest
in the build directory.
On Windows you can use Visual Studio by generating a Visual Studio project through the CMake client or use ports of unix tools like the ones from MinGW.