gcc, g++, gdb: add Korean translation (#9067)

This commit is contained in:
Jason Yoo
2022-10-25 21:53:24 +09:00
committed by GitHub
parent 28b8fe04e7
commit 97610bccbc
3 changed files with 77 additions and 0 deletions

24
pages.ko/common/gdb.md Normal file
View File

@@ -0,0 +1,24 @@
# gdb
> GNU 디버거.
> 더 많은 정보: <https://www.gnu.org/software/gdb>.
- 실행파일을 디버깅합니다:
`gdb {{실행파일}}`
- 프로세스를 gdb에 연결합니다:
`gdb -p {{프로세스ID}}`
- 코어 파일과 함께 디버깅합니다:
`gdb -c {{코어}} {{실행파일}}`
- 디버깅을 시작하면서 주어진 GDB 명령들을 수행합니다:
`gdb -ex "{{명령들}}" {{실행파일}}`
- 디버깅을 시작하면서 실행파일에 인자들을 넘겨줍니다:
`gdb --args {{실행파일}} {{인자1}} {{인자2}}`