Skip to content
Pre-release. v0.1.0 is not tagged and there are no published binaries yet. Install from source. Commands on this site were run against the current main.

lazydap launch

Start a program under the debugger

lazydap launch [OPTIONS] <PROGRAM> [-- <ARGS>...]
Argument Description
<PROGRAM> The program to debug
[ARGS]... Arguments for the debuggee, after a -- separator. They are kept separate so a debuggee flag can never be mistaken for a lazydap one
Flag Description
--stop-on-entry Stop at the program’s entry point instead of running to the first breakpoint
--cwd <CWD> Working directory for the debuggee. Defaults to the current one
--env <KEY=VALUE> Environment for the debuggee, as KEY=VALUE. Repeatable
--adapter <ADAPTER> Which debug adapter to use. Defaults to the one the program’s file extension implies — debugpy for .py, codelldb otherwise

Plus the options every command takes.