From 3a2c1a68b27fe5697fa0246200f652314effe049 Mon Sep 17 00:00:00 2001 From: Nils Dijk Date: Mon, 9 May 2022 14:21:18 +0200 Subject: [PATCH] fix debug configuration --- .devcontainer/.vscode/launch.json | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/.devcontainer/.vscode/launch.json b/.devcontainer/.vscode/launch.json index c5fb0ae72..595c18852 100644 --- a/.devcontainer/.vscode/launch.json +++ b/.devcontainer/.vscode/launch.json @@ -5,19 +5,12 @@ "version": "0.2.0", "configurations": [ { - "type": "cppdbg", "name": "Attach Citus (devcontainer)", + "type": "cppdbg", "request": "attach", - "program": "/home/citus/.pgenv/pgsql/bin/postgres", "processId": "${command:pickProcess}", - "MIMode": "gdb", - "setupCommands": [ - { - "description": "Enable pretty-printing for gdb", - "text": "-enable-pretty-printing", - "ignoreFailures": true - } - ], + "program": "/home/citus/.pgenv/pgsql/bin/postgres", + "additionalSOLibSearchPath": "/home/citus/.pgenv/pgsql/lib", }, ] }