3.3. Executing your program during a debugging session
Use LLDB to run your program during your debugging session. The execution of your program stops when the first breakpoint is reached, when an error occurs, or when the program terminates.
Prerequisites
Procedure
Run the program you are debugging:
(lldb) runAlternatively, run the program you are debugging by using a specific argument:
(lldb) run <argument>Replace
<argument>with the command-line argument you want to use.