Made gdb & lldb command path customizable (fix #53)
This commit is contained in:
parent
f46ab81b2e
commit
7e73c686b2
3 changed files with 32 additions and 4 deletions
20
package.json
20
package.json
|
|
@ -60,6 +60,11 @@
|
|||
"type": "string",
|
||||
"description": "Path of project"
|
||||
},
|
||||
"gdbpath": {
|
||||
"type": "string",
|
||||
"description": "Path to the gdb executable or the command if in PATH",
|
||||
"default": "gdb"
|
||||
},
|
||||
"printCalls": {
|
||||
"type": "boolean",
|
||||
"description": "Prints all GDB calls to console",
|
||||
|
|
@ -155,6 +160,11 @@
|
|||
"type": "string",
|
||||
"description": "Path of executable for debugging symbols"
|
||||
},
|
||||
"gdbpath": {
|
||||
"type": "string",
|
||||
"description": "Path to the gdb executable or the command if in PATH",
|
||||
"default": "gdb"
|
||||
},
|
||||
"cwd": {
|
||||
"type": "string",
|
||||
"description": "Path of project",
|
||||
|
|
@ -228,6 +238,11 @@
|
|||
"type": "string",
|
||||
"description": "Path of project"
|
||||
},
|
||||
"lldbmipath": {
|
||||
"type": "string",
|
||||
"description": "Path to the lldb-mi executable or the command if in PATH",
|
||||
"default": "lldb-mi"
|
||||
},
|
||||
"printCalls": {
|
||||
"type": "boolean",
|
||||
"description": "Prints all lldb calls to console",
|
||||
|
|
@ -318,6 +333,11 @@
|
|||
"type": "string",
|
||||
"description": "Path of executable for debugging symbols"
|
||||
},
|
||||
"lldbmipath": {
|
||||
"type": "string",
|
||||
"description": "Path to the lldb-mi executable or the command if in PATH",
|
||||
"default": "lldb-mi"
|
||||
},
|
||||
"cwd": {
|
||||
"type": "string",
|
||||
"description": "Path of project",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue