1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-29 15:35:28 +02:00
tldr/pages.ko/osx/lldb.md

17 lines
381 B
Markdown
Raw Normal View History

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