Path to the wasm-aware LLDB.
()
| 41 | |
| 42 | /// Path to the wasm-aware LLDB. |
| 43 | fn lldb_path() -> String { |
| 44 | std::env::var("LLDB").unwrap_or("/opt/wasi-sdk/bin/lldb".to_string()) |
| 45 | } |
| 46 | |
| 47 | /// The readiness marker printed by the gdbstub to stderr. |
| 48 | const GDBSTUB_READY_MARKER: &str = "Debugger listening on"; |
no test coverage detected