mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-12 04:54:52 +03:00
16 lines
261 B
Markdown
16 lines
261 B
Markdown
# lldb
|
|
|
|
> The LLVM Low-Level Debugger.
|
|
|
|
- Debug an executable:
|
|
|
|
`lldb {{executable}}`
|
|
|
|
- Attach lldb to running process with id {{pid}}:
|
|
|
|
`lldb -p {{pid}}`
|
|
|
|
- Wait for a new process to launch with the given name and attach to it:
|
|
|
|
`lldb -w -n {{process_name}}`
|