Forrest logo
back to context overview

lldb

List of commands for lldb:

  • lldb:tldr:809f3 lldb: Attach `lldb` to a running process with a given PID.
    $ lldb -p ${pid}
    try on your machine
    explain this command
  • lldb:tldr:b4f03 lldb: Wait for a new process to launch with a given name, and attach to it.
    $ lldb -w -n ${process_name}
    try on your machine
    explain this command
  • lldb:tldr:eea05 lldb: Debug an executable.
    $ lldb ${executable}
    try on your machine
    explain this command
back to context overview