mesytec-mnode/.vscode/launch.json
2024-12-26 18:42:25 +01:00

62 lines
2.2 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": "mana_auto_replay",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/build/mana_auto_replay",
"args": [
"~/Documents/is690-9Li_3H_run094_241020_124254_part001.zip",
"--plugin=src/libmana-plugin-root-histogram.so"
],
"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
}
]
},
{
"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
}
]
}
]
}