Files
wasmtime/docs/examples-debugging.md
Nick Fitzgerald 5c1557d24e Add docs and example for debugging with core dumps (#7087)
* Add docs for debugging with core dumps

* Fix reference to old style CLI flag

* Add `no_run` to example that is only there to trap
2023-09-26 17:55:45 +00:00

12 lines
429 B
Markdown

# Debugging WebAssembly
Wasmtime currently provides the following support for debugging misbehaving
WebAssembly:
* We can [live debug and step through the guest Wasm and the host at the same
time with `gdb` or `lldb`.](./examples-debugging-native-debugger.md)
* When a Wasm guest traps, we can [generate Wasm core
dumps](./examples-debugging-core-dumps.md), that can be consumed by other
tools for post-mortem analysis.