Updated Code debug configuration to use lldb
All checks were successful
Build ptprnt / build (push) Successful in 3m50s

This commit is contained in:
Moritz Martinius
2024-11-14 20:37:04 +01:00
parent eaf566ff28
commit 349036bfaf

17
.vscode/launch.json vendored
View File

@@ -6,22 +6,13 @@
"configurations": [
{
"name": "ptprnt_debug",
"type": "cppdbg",
"type": "lldb",
"request": "launch",
"program": "${workspaceFolder}/builddir/ptprnt",
"args": ["-t Hello"],
"stopAtEntry": false,
"args": [
"-t Hello"
],
"cwd": "${fileDirname}",
"environment": [],
"externalConsole": false,
"MIMode": "gdb",
"setupCommands": [
{
"description": "Automatische Strukturierung und Einrückung für \"gdb\" aktivieren",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
]
}