Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBartosz Taudul <wolf@nereid.pl>2022-04-24 00:16:13 +0300
committerBartosz Taudul <wolf@nereid.pl>2022-04-24 00:16:13 +0300
commite7be9b4e218a5feca29a319eec916667279b42cb (patch)
tree05f2e57a17e7628bc1ada7cb4044275c3f45000c /.vscode
parent1dbca1b9bcc15df7f7553bbfbb443483948a8cba (diff)
Update vscode debug launch configuration for lldb.
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/launch.json14
1 files changed, 3 insertions, 11 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index 3bf50141..afc47873 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -5,23 +5,15 @@
"version": "0.2.0",
"configurations": [
{
- "name": "(gdb) Launch",
- "type": "cppdbg",
+ "name": "Launch",
+ "type": "lldb",
"request": "launch",
"program": "${workspaceFolder}/profiler/build/unix/Tracy-debug",
"args": [],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
- "externalConsole": false,
- "MIMode": "gdb",
- "setupCommands": [
- {
- "description": "Włącz formatowanie kodu dla gdb",
- "text": "-enable-pretty-printing",
- "ignoreFailures": true
- }
- ]
+ "externalConsole": false
}
]
} \ No newline at end of file