lldb: merge into common (#22649)

This commit is contained in:
Managor
2026-06-02 17:44:41 +03:00
committed by GitHub
parent 00b1da2d91
commit c8ec6560e6
2 changed files with 3 additions and 19 deletions
+3 -3
View File
@@ -1,11 +1,11 @@
# lldb
> The LLVM Low-Level Debugger.
> More information: <https://lldb.llvm.org/>.
> More information: <https://lldb.llvm.org/man/lldb.html>.
- Debug an executable:
`lldb {{executable}}`
`lldb "{{executable}}"`
- Attach `lldb` to a running process with a given PID:
@@ -13,4 +13,4 @@
- Wait for a new process to launch with a given name, and attach to it:
`lldb -w -n {{process_name}}`
`lldb -w -n "{{process_name}}"`
-16
View File
@@ -1,16 +0,0 @@
# lldb
> The LLVM Low-Level Debugger.
> More information: <https://lldb.llvm.org/man/lldb.html>.
- Debug an executable:
`lldb "{{executable}}"`
- Attach `lldb` to a running process with a given PID:
`lldb -p {{pid}}`
- Wait for a new process to launch with a given name, and attach to it:
`lldb -w -n "{{process_name}}"`