blob: d060899119c7ff63951cf3eb2403bb18cae83530 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
;;; RUN: %(wasm-objdump)s
;;; ARGS: --help
(;; STDOUT ;;;
usage: wasm-objdump [options] filename+
Print information about the contents of wasm binaries.
examples:
$ wasm-objdump test.wasm
options:
--help Print this help message
--version Print version information
-h, --headers Print headers
-j, --section=SECTION Select just one section
-s, --full-contents Print raw section contents
-d, --disassemble Disassemble function bodies
--debug Print extra debug information
-x, --details Show section details
-r, --reloc Show relocations inline with disassembly
--section-offsets Print section offsets instead of file offsets in code disassembly
;;; STDOUT ;;)
|