summaryrefslogtreecommitdiffstats
path: root/.vscode/launch.json
diff options
context:
space:
mode:
Diffstat (limited to '.vscode/launch.json')
-rw-r--r--.vscode/launch.json31
1 files changed, 30 insertions, 1 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index 96e8c85..5dbce66 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -5,9 +5,10 @@
"version": "0.2.0",
"configurations": [
{
- "name": "(gdb) Launch",
+ "name": "First_run",
"type": "cppdbg",
"request": "launch",
+ "preLaunchTask": "first_run",
"program": "/opt/AGL/bin/afb-daemon",
"args": [ "--rootdir=${workspaceRoot}/build/package/",
"--workdir=${workspaceRoot}/build/package/",
@@ -31,6 +32,34 @@
"ignoreFailures": true
}
]
+ },
+ {
+ "name": "Resuming_run",
+ "type": "cppdbg",
+ "request": "launch",
+ "program": "/opt/bin/afb-daemon",
+ "args": [ "--rootdir=${workspaceRoot}/build/package/",
+ "--workdir=${workspaceRoot}/build/package/",
+ "--ldpaths=lib",
+ "--roothttp=.",
+ "--tracereq=common",
+ "--token=1",
+ "--verbose",
+ "--verbose",
+ "--verbose"],
+ "additionalSOLibSearchPath": "${workspaceRoot}/build/package/lib",
+ "stopAtEntry": false,
+ "cwd": "${workspaceRoot}/build/package",
+ "environment": [],
+ "externalConsole": true,
+ "MIMode": "gdb",
+ "setupCommands": [
+ {
+ "description": "Enable pretty-printing for gdb",
+ "text": "-enable-pretty-printing",
+ "ignoreFailures": true
+ }
+ ]
}
]
}