lldb_run_command
Execute arbitrary LLDB debugging commands to inspect variables, set breakpoints, analyze crashes, or run any other LLDB operation for C/C++ programs.
Instructions
Execute an arbitrary LLDB command and return the output.
This is a flexible tool for running any LLDB command. Use this when
other specialized tools don't cover your specific need.
Common commands:
- 'help' - Show help for commands
- 'version' - Show LLDB version
- 'settings list' - Show all settings
- 'type summary list' - List type summaries
- 'platform list' - List available platforms
Args:
params: RunCommandInput containing the command and optional target
Returns:
str: Command output or error messageInput Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |