Created
June 21, 2018 14:29
-
-
Save aharonamir/789e782af75105dd4bc103619e4a4787 to your computer and use it in GitHub Desktop.
debug config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "C++ Launch (GDBSERVER)", | |
"type": "cppdbg", | |
"request": "launch", | |
"miDebuggerServerAddress": "localhost:2000", | |
"preLaunchTask": "start-gdbserver", | |
"miDebuggerPath": "/usr/bin/gdb", | |
"targetArchitecture": "x64", | |
"program": "${workspaceRoot}/build/bin/your_app", | |
"args": [], | |
"stopAtEntry": false, | |
"cwd": "${workspaceRoot}", | |
"sourceFileMap":{ | |
"/home/develop/project": "${workspaceRoot}" | |
}, | |
"environment": [] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment