
wasm-objdump
List of commands for wasm-objdump:
-
wasm-objdump:tldr:04fba wasm-objdump: Display the section headers of a given binary.$ wasm-objdump -h ${file-wasm}try on your machineexplain this command
-
wasm-objdump:tldr:1e95e wasm-objdump: Display the details of each section.$ wasm-objdump --details ${file-wasm}try on your machineexplain this command
-
wasm-objdump:tldr:60395 wasm-objdump: Display the details of a given section.$ wasm-objdump --section '${import}' --details ${file-wasm}try on your machineexplain this command
-
wasm-objdump:tldr:b7e0c wasm-objdump: Display the entire disassembled output of a given binary.$ wasm-objdump -d ${file-wasm}try on your machineexplain this command