blob: 4b1a45a89bd274731ac49fbdc925b7a36a9a8607 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
;;; RUN: %(wasm-validate)s
;;; ARGS: --help
(;; STDOUT ;;;
usage: wasm-validate [options] filename
Read a file in the WebAssembly binary format, and validate it.
examples:
# validate binary file test.wasm
$ wasm-validate test.wasm
options:
-v, --verbose Use multiple times for more info
--help Print this help message
--enable-exceptions Enable Experimental exception handling
--disable-mutable-globals Disable Import/export mutable globals
--enable-saturating-float-to-int Enable Saturating float-to-int operators
--enable-sign-extension Enable Sign-extension operators
--enable-simd Enable SIMD support
--enable-threads Enable Threading support
--enable-multi-value Enable Multi-value
--enable-tail-call Enable Tail-call support
--enable-bulk-memory Enable Bulk-memory operations
--no-debug-names Ignore debug names in the binary file
--ignore-custom-section-errors Ignore errors in custom sections
;;; STDOUT ;;)
|