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