29 lines
1 KiB
JSON
29 lines
1 KiB
JSON
|
{
|
||
|
// 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": "gcc - Générer et déboguer le fichier actif",
|
||
|
"type": "cppdbg",
|
||
|
"request": "launch",
|
||
|
"program": "${fileDirname}/${fileBasenameNoExtension}",
|
||
|
"args": [],
|
||
|
"stopAtEntry": false,
|
||
|
"cwd": "${fileDirname}",
|
||
|
"environment": [],
|
||
|
"externalConsole": false,
|
||
|
"MIMode": "gdb",
|
||
|
"setupCommands": [
|
||
|
{
|
||
|
"description": "Activer l'impression en mode Pretty pour gdb",
|
||
|
"text": "-enable-pretty-printing",
|
||
|
"ignoreFailures": true
|
||
|
}
|
||
|
],
|
||
|
"preLaunchTask": "C/C++: gcc générer le fichier actif",
|
||
|
"miDebuggerPath": "/usr/bin/gdb"
|
||
|
}
|
||
|
]
|
||
|
}
|