Made gdb & lldb command path customizable (fix #53)

This commit is contained in:
WebFreak001 2016-03-23 22:28:57 +01:00
commit 7e73c686b2
3 changed files with 32 additions and 4 deletions

View file

@ -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",