목적
- vscode를 사용해서 g++을 원격으로 디버깅하는 방법을 설명하고자 한다.
방법
먼저 ssh로 접속이 가능하도록 설정 한다. (여기 까지는 공개된 방법이 많이 있습니다)
작업 영역을 설정한다.
- 디버깅은 작업영역을 설정해야 가능 합니다.
launch.json 파일에 추가한다.
- Run
{
"name": "process1 run",
"type": "cppdbg",
"request": "launch",
"program": "/home/newtype/vscode_debug/process1",
"cwd": "${workspaceFolder}",
"MIMode": "gdb",
"miDebuggerPath": "/usr/bin/gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
},
- Attatch
{
"name": "process1 Attach",
"type": "cppdbg",
"request": "attach",
"program": "/home/newtype/vscode_debug/process1",
"MIMode": "gdb",
"processId": "${command:pickProcess}",
"miDebuggerPath": "/usr/bin/gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
},
반응형
'Dev > C, C++' 카테고리의 다른 글
FindMSSQL (0) | 2017.09.12 |
---|---|
Simple Http Server (0) | 2017.06.08 |
OpenSSL 을 사용한 RSA (0) | 2017.05.30 |
Visual Leak Detector 를 사용하여 Leak을 감지하는 방법. (0) | 2016.02.15 |
debian 계열 linux에서 core 파일 생성 방법 (0) | 2015.07.30 |