XCode has functionality to set breakpoint, then run lldb command and “Automatically continue after evaluating”.
How to setup same functionality via --source
? Found --command
quote in the manual, but no examples and no reference in sub-command help
By default, the breakpoint command add command takes lldb command line commands. You can also specify this explicitly by passing the "--command" option.
Syntax: command <sub-command> [<sub-command-options>] <breakpoint-id>
I think you are asking about auto-continue with lldb?
I used the
modify
command to add auto-continue..then to add some commands I used..
The help has some good examples
(lldb) help breakpoint command add