gdb-command
is a library providing API for manipulating gdb in batch mode. It supports:
```rust use std::process::Command; use std::thread; use std::time::Duration; use gdb_command::*;
fn main () -> error::Result<()> { // Get stack trace from running program (stopped at crash) let result = GdbCommand::new(&ExecType::Local(&["tests/bins/test_abort", "A"])).r().bt().launch()?;
// Get stack trace from core
let result = GdbCommand::new(
&ExecType::Core {target: "tests/bins/test_canary",
core: "tests/bins/core.test_canary"})
.bt().launch()?;
// Get info from remote attach to process
let mut child = Command::new("tests/bins/test_callstack_remote")
.spawn()
.expect("failed to execute child");
thread::sleep(Duration::from_millis(10));
// To run this test: echo 0 | sudo tee /proc/sys/kernel/yama/ptrace_scope
let result = GdbCommand::new(&ExecType::Remote(&child.id().to_string()))
.bt()
.regs()
.disassembly()
.launch();
child.kill().unwrap();
Ok(())
}
```
toml
[dependencies]
gdb-command = "0.6.3"
This crate is licensed under the [MIT license].