lldb_run
Execute a program under debugger control to analyze runtime behavior. Loads executable, sets breakpoints, runs code, and returns program state including backtrace and variables for debugging C/C++ applications.
Instructions
Run a program under the debugger with optional breakpoints.
This tool:
1. Loads the executable
2. Sets any specified breakpoints
3. Runs the program (optionally stopping at entry)
4. Returns the state when stopped
Args:
params: RunProgramInput with executable, args, and breakpoints
Returns:
str: Program state after stopping (backtrace, variables)Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |