1
Fork 0
mirror of https://github.com/Steffo99/unimore-hpc-assignments.git synced 2024-11-22 16:14:24 +00:00
hpc-2022-g3/.vscode/launch.json

28 lines
924 B
JSON
Raw Normal View History

2022-11-30 00:03:04 +00:00
{
// 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": "atax",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/atax/atax.elf",
"args": [],
"stopAtEntry": false,
2022-11-30 00:09:52 +00:00
"cwd": "${workspaceFolder}/atax",
2022-11-30 00:03:04 +00:00
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
2022-12-01 23:15:33 +00:00
"miDebuggerPath": "/usr/bin/gdb",
2022-11-30 00:03:04 +00:00
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
]
}