diff --git a/.vscode/launch.json b/.vscode/launch.json index aeb3d83..8383799 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -10,7 +10,14 @@ "args": [], // may input the test llvm bc file or other options and flags the program may use "cwd": "${workspaceFolder}", "preLaunchTask": "C/C++: cpp build active file", - "MIMode": "lldb" + "MIMode": "lldb", + "setupCommands": [ + { + "description": "Enable pretty-printing for gdb", + "text": "-enable-pretty-printing", + "ignoreFailures": true + } + ] } ] -} \ No newline at end of file +}