From 349036bfafd6c4df9973ae99539be1686be56941 Mon Sep 17 00:00:00 2001 From: Moritz Martinius Date: Thu, 14 Nov 2024 20:37:04 +0100 Subject: [PATCH] Updated Code debug configuration to use lldb --- .vscode/launch.json | 19 +++++-------------- 1 file changed, 5 insertions(+), 14 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 5ccd544..d5c96ac 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -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 - } - ] } ] -} +} \ No newline at end of file