1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.ko/common/lldb.md

17 lines
348 B
Markdown
Raw Normal View History

# lldb
> LLVM 저수준 디버거.
> 더 많은 정보: <https://lldb.llvm.org>.
- 실행 파일을 디버그:
`lldb {{실행_파일}}`
- 주어진 PID로 실행 중인 프로세스에 `lldb` 연결:
`lldb -p {{pid}}`
- 주어진 이름의 새 프로세스가 시작될 때까지 기다렸다가 연결:
`lldb -w -n {{프로세스_이름}}`