Update vscode debug launch configuration for lldb.

This commit is contained in:
Bartosz Taudul 2022-04-23 23:16:13 +02:00
parent 1dbca1b9bc
commit e7be9b4e21
No known key found for this signature in database
GPG Key ID: B7FE2008B7575DF3

14
.vscode/launch.json vendored
View File

@ -5,23 +5,15 @@
"version": "0.2.0", "version": "0.2.0",
"configurations": [ "configurations": [
{ {
"name": "(gdb) Launch", "name": "Launch",
"type": "cppdbg", "type": "lldb",
"request": "launch", "request": "launch",
"program": "${workspaceFolder}/profiler/build/unix/Tracy-debug", "program": "${workspaceFolder}/profiler/build/unix/Tracy-debug",
"args": [], "args": [],
"stopAtEntry": false, "stopAtEntry": false,
"cwd": "${workspaceFolder}", "cwd": "${workspaceFolder}",
"environment": [], "environment": [],
"externalConsole": false, "externalConsole": false
"MIMode": "gdb",
"setupCommands": [
{
"description": "Włącz formatowanie kodu dla gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
} }
] ]
} }