Skip to content

Instantly share code, notes, and snippets.

@aharonamir
Created June 21, 2018 14:29
Show Gist options
  • Save aharonamir/789e782af75105dd4bc103619e4a4787 to your computer and use it in GitHub Desktop.
Save aharonamir/789e782af75105dd4bc103619e4a4787 to your computer and use it in GitHub Desktop.
debug config
{
"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