mesytec-mnode/.vscode/launch.json

60 lines
2.1 KiB
JSON
Raw Normal View History

2024-12-25 18:28:28 +01: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": "mana_auto_replay",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/build/mana_auto_replay",
"args": ["~/Documents/is690-9Li_3H_run094_241020_124254_part001.zip"],
"stopAtEntry": false,
"cwd": "${fileDirname}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
},
{
"description": "Set Disassembly Flavor to Intel",
"text": "-gdb-set disassembly-flavor intel",
"ignoreFailures": true
}
]
},
{
"name": "(gdb) mvlc-mini-daq",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/build/mvlc-mini-daq",
"args": [
"--no-listfile",
"~/Documents/mvme-workspaces/dev-workspace/mtdc_001.yaml"
],
"stopAtEntry": false,
"cwd": "${workspaceFolder}/build",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
},
{
"description": "Set Disassembly Flavor to Intel",
"text": "-gdb-set disassembly-flavor intel",
"ignoreFailures": true
}
]
}
]
}