/wasmint

A WebAssembly (WASM) interpreter

Primary LanguageC++Apache License 2.0Apache-2.0

wasmint

Build Status

A WebAssembly (WASM) Interpreter with a focus on debugging licensed under the Apache 2.0 License.

Building

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

Linux/OS X/Unix/Posix

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.

Windows

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.