Files

16 lines
412 B
Markdown
Raw Permalink Normal View History

2020-03-20 18:10:53 -05:00
# Debugging
You can also [browse this source code online][code] and clone the wasmtime
repository to run the example locally.
2020-06-25 14:03:21 -05:00
[code]: https://github.com/bytecodealliance/wasmtime/blob/main/examples/fib-debug/main.rs
2020-03-20 18:10:53 -05:00
This example shows off how to set up a module for dynamic runtime debugging via
a native debugger like GDB or LLDB.
## `main.rs`
```rust,ignore
{{#include ../examples/fib-debug/main.rs}}
```