tiny_os/.vscode/launch.json
2024-04-24 21:27:35 +08:00

25 lines
723 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Debug",
"preLaunchTask": "build test",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/target/test_exe",
"cwd": "${workspaceFolder}",
"MIMode": "gdb",
"miDebuggerPath": "/usr/bin/gdb-multiarch",
"miDebuggerServerAddress": "localhost:1234",
"setupCommands": [
{
"text": "-enable-pretty-printing",
"ignoreFailures": true
},
{
"text": "set output-radix 16"
}
]
},
]
}