ysyx/.vscode/launch.json

84 lines
3.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": "Q42_1",
"type": "cppdbg",
"request": "launch",
"program": "/home/fengqi/Documents/GitRepos/ysyx/pre-study_phase/2025_02_17/Q42/tests/stack_tests.out",
"args": [],
"stopAtEntry": true,
"cwd": "/home/fengqi/Documents/GitRepos/ysyx/pre-study_phase/2025_02_17/Q42",
"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
}
],
"preLaunchTask": "Q42_build"
},
{
"name": "Q42_2",
"type": "cppdbg",
"request": "launch",
"program": "/home/fengqi/Documents/GitRepos/ysyx/pre-study_phase/2025_02_17/Q42/tests/queue_tests.out",
"args": [],
"stopAtEntry": true,
"cwd": "/home/fengqi/Documents/GitRepos/ysyx/pre-study_phase/2025_02_17/Q42",
"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
}
],
"preLaunchTask": "Q42_build"
},
{
"name": "Q44",
"type": "cppdbg",
"request": "launch",
"program": "/home/fengqi/Documents/GitRepos/ysyx/pre-study_phase/2025_02_18/Q44/tests/ring_buffer_tests.out",
"args": [],
"stopAtEntry": true,
"cwd": "/home/fengqi/Documents/GitRepos/ysyx/pre-study_phase/2025_02_18/Q44",
"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
}
],
"preLaunchTask": "Q44_build"
}
]
}