diff options
Diffstat (limited to '.vscode/launch.json')
-rw-r--r-- | .vscode/launch.json | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json index bd9d2e0..9bf7391 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -168,7 +168,13 @@ "environment": [], "externalConsole": false, "MIMode": "gdb", - "setupCommands": [], + "setupCommands": [ + { + "description": "Ignore SIGPIPE", + "text": "handle SIGPIPE nostop print", + "ignoreFailures": false + } + ], "preLaunchTask": "Build hostinfod", "miDebuggerPath": "/usr/bin/gdb" }, |