From 60974e66c57cacdc2483d74718c4bb0a993d2183 Mon Sep 17 00:00:00 2001 From: Sebastien Douheret Date: Mon, 7 Aug 2017 08:49:25 +0200 Subject: Initial commit Signed-off-by: Sebastien Douheret --- .vscode/launch.json | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 .vscode/launch.json (limited to '.vscode/launch.json') diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..f047dc0 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,57 @@ +{ + "version": "0.2.0", + "configurations": [ + + { + "name": "xds-gdb help", + "type": "go", + "request": "launch", + "mode": "debug", + "program": "${workspaceRoot}", + "env": { + "GOPATH": "${workspaceRoot}/../../../..:${env:GOPATH}", + "XDS_LOGLEVEL": "debug" + }, + "args": ["-tt", "--help", "--version"], + "showLog": false + }, + { + "name": "xds-gdb", + "type": "go", + "request": "launch", + "mode": "debug", + "program": "${workspaceRoot}", + "env": { + "GOPATH": "${workspaceRoot}/../../../..:${env:GOPATH}" + }, + "args": ["-x", "/tmp/gdbconf.ini", "-nx"], + "showLog": false + }, + { + "name": "xds-gdb TTY", + "type": "go", + "request": "launch", + "mode": "debug", + "program": "${workspaceRoot}", + "env": { + "GOPATH": "${workspaceRoot}/../../../..:${env:GOPATH}" + }, + "args": ["-tty", "/dev/pts27", "-nx", "-x", "${workspaceRoot}/__config/gdb-on-m3ulcb_debug_pi.ini"], + "showLog": false + }, + { + "name": "xds-gdb native", + "type": "go", + "request": "launch", + "mode": "debug", + "program": "${workspaceRoot}", + "env": { + "GOPATH": "${workspaceRoot}/../../../..:${env:GOPATH}", + "XDS_LOGLEVEL": "debug" + }, + "args": ["-x", "${workspaceRoot}/__config/gdb-on-localhost_debug_pi.ini"], + "showLog": false + } + + ] +} -- cgit 1.2.3-korg