Files
tldr/pages.zh/common/lldb.md

16 lines
319 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# lldb
> LLVM低级调试器。
> 更多信息:<https://lldb.llvm.org>。
- 调试一个可执行文件:
`lldb {{可执行文件}}`
-`lldb`附加到一个具有给定PID的运行中的进程
`lldb -p {{pid}}`
- 等待以给定名称启动的新进程,并附加到它:
`lldb -w -n {{进程名称}}`