lldb.md: add page (#1444)

This commit is contained in:
Kevin Ushey 2017-08-14 08:11:57 -07:00 committed by Starbeamrainbowlabs
parent dbf437628a
commit 718f4bb0b8
2 changed files with 30 additions and 0 deletions

15
pages/linux/lldb.md Normal file
View File

@ -0,0 +1,15 @@
# 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}}`

15
pages/osx/lldb.md Normal file
View File

@ -0,0 +1,15 @@
# 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}}`