From 0551590db22e7ec7c8e2971a289c9fb0365f1030 Mon Sep 17 00:00:00 2001 From: mortinger91 Date: Tue, 18 Apr 2023 20:02:55 +0200 Subject: [PATCH] Use lldb instead of cppdbg in launch.json file --- .vscode/launch.json | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index a1b4ada..b94a4bc 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -3,24 +3,12 @@ "configurations": [ { "name": "DEBUG", - "type": "cppdbg", + "type": "lldb", "request": "launch", "program": "${workspaceFolder}/build/debug/bin/cpp-cmake-template", "args": [], - "stopAtEntry": false, "cwd": "${workspaceFolder}", - "environment": [], - "externalConsole": false, - "MIMode": "gdb", - "setupCommands": [ - { - "description": "Enable pretty-printing for gdb", - "text": "-enable-pretty-printing", - "ignoreFailures": true - } - ], "preLaunchTask": "build_debug", - "miDebuggerPath": "/usr/bin/gdb" } ] } \ No newline at end of file