diff options
author | Sam Clegg <sbc@chromium.org> | 2016-10-12 13:32:50 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-12 13:32:50 -0700 |
commit | 7de714088a3e4effd9e1915f725a99f2e9fd23ff (patch) | |
tree | 817ae0a01d91d0dcb36ca7a2eee53b6a37ff5a5f /Makefile | |
parent | 9b23a2a9a37f19a1516f270c2bd5d7b86cd14158 (diff) | |
download | wabt-7de714088a3e4effd9e1915f725a99f2e9fd23ff.tar.gz wabt-7de714088a3e4effd9e1915f725a99f2e9fd23ff.tar.bz2 wabt-7de714088a3e4effd9e1915f725a99f2e9fd23ff.zip |
Add wasmdump binary for inspecting wasm files (#161)
* Add wasmdump binary for inspecting wasm files
Run this tool to as part of the 'dump' tests rather
than using the -d flag to wast2wasm.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -32,7 +32,7 @@ COMPILERS := GCC GCC_I686 GCC_FUZZ CLANG EMSCRIPTEN BUILD_TYPES := DEBUG RELEASE SANITIZERS := ASAN MSAN LSAN UBSAN CONFIGS := NORMAL $(SANITIZERS) NO_RE2C_BISON NO_TESTS -EXECUTABLES := wast2wasm wasm2wast wasm-interp wasmopcodecnt hexfloat_test +EXECUTABLES := wast2wasm wasm2wast wasm-interp wasmopcodecnt hexfloat_test wasmdump # directory names GCC_DIR := gcc/ |