1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-10-30 22:38:23 +01:00

lldb: add Chinese translation

This commit is contained in:
wizarot 2019-03-02 23:03:30 +08:00 committed by Agniva De Sarker
parent 8f060518b6
commit bd70a747ed

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

@ -0,0 +1,15 @@
# lldb
> LLVM 低级调试器.
- 调试可执行文件:
`lldb {{可执行的命令}}`
- 将 `lldb` 附加到具有给定PID的正在运行的进程:
`lldb -p {{进程号PID}}`
- 等待使用给定名称的进程启动,然后附加到该进程上:
`lldb -w -n {{进程名}}`