Skip to content

Instantly share code, notes, and snippets.

@sshravan
Created June 24, 2019 08:26
Show Gist options
  • Save sshravan/7b62efc8de5dc2dc094a0a1f462826b8 to your computer and use it in GitHub Desktop.
Save sshravan/7b62efc8de5dc2dc094a0a1f462826b8 to your computer and use it in GitHub Desktop.
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "(gdb) Launch",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/build/src/vcs-test",
"args": [" 4 "],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": true,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment