Added support for attaching & connecting to gdbserver (fix #4, fix #5)

This commit is contained in:
WebFreak001 2016-02-04 15:45:10 +01:00
commit 99217775cf
5 changed files with 139 additions and 8 deletions

View file

@ -49,6 +49,30 @@
"description": "Path of project"
}
}
},
"attach": {
"required": [
"target"
],
"properties": {
"target": {
"type": "string",
"description": "PID of running program or program name or connection arguments (eg :2345) if remote is true"
},
"remote": {
"type": "boolean",
"description": "If true this will connect to a gdbserver instead of attaching to a PID",
"default": false
},
"executable": {
"type": "string",
"description": "Path of executable for debugging symbols"
},
"cwd": {
"type": "string",
"description": "Path of project"
}
}
}
},
"initialConfigurations": [