From e7be9b4e218a5feca29a319eec916667279b42cb Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Sat, 23 Apr 2022 23:16:13 +0200 Subject: [PATCH] Update vscode debug launch configuration for lldb. --- .vscode/launch.json | 14 +++----------- 1 file 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