{ "version": "0.2.0", "configurations": [ { "name": "Debug C Implementation (testable)", "type": "cppdbg", "request": "launch", "program": "${workspaceFolder}/testable", "args": [], "stopAtEntry": false, "cwd": "${workspaceFolder}", "environment": [], "externalConsole": false, "MIMode": "lldb", "targetArchitecture": "arm64", "preLaunchTask": "Build Testable Binary", "setupCommands": [ { "description": "Enable pretty-printing for gdb", "text": "-enable-pretty-printing", "ignoreFailures": true } ] }, { "name": "Attach to PostgreSQL Backend", "type": "cppdbg", "request": "attach", "program": "${workspaceFolder}/pg_bin", // symlink to the postgres binary "processId": "${command:pickProcess}", "MIMode": "lldb", "preLaunchTask": "Setup Postgres Binary Symlink", "setupCommands": [ { "text": "settings set target.load-symbols-on-demand true" } ] } ] }