Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions Extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4364,6 +4364,24 @@
"default": "throw",
"description": "%c_cpp.debuggers.unknownBreakpointHandling.description%"
},
"debuginfod": {
"description": "%c_cpp.debuggers.debuginfod.description%",
"default": {},
"type": "object",
"properties": {
"enabled": {
"type": "boolean",
"description": "%c_cpp.debuggers.debuginfod.enabled.description%",
"default": true
},
"timeout": {
"type": "integer",
"description": "%c_cpp.debuggers.debuginfod.timeout.description%",
"minimum": 0,
"default": 30
}
}
},
"variables": {
"type": "object",
"description": "%c_cpp.debuggers.variables.description%",
Expand Down Expand Up @@ -4964,6 +4982,24 @@
}
]
},
"debuginfod": {
"description": "%c_cpp.debuggers.debuginfod.description%",
"default": {},
"type": "object",
"properties": {
"enabled": {
"type": "boolean",
"description": "%c_cpp.debuggers.debuginfod.enabled.description%",
"default": true
},
"timeout": {
"type": "integer",
"description": "%c_cpp.debuggers.debuginfod.timeout.description%",
"minimum": 0,
"default": 30
}
}
},
"logging": {
"description": "%c_cpp.debuggers.logging.description%",
"type": "object",
Expand Down
3 changes: 3 additions & 0 deletions Extension/package.nls.json
Original file line number Diff line number Diff line change
Expand Up @@ -1011,6 +1011,9 @@
"c_cpp.debuggers.sourceFileMap.sourceFileMapEntry.useForBreakpoints.description": "False if this entry is only used for stack frame location mapping. True if this entry should also be used when specifying breakpoint locations.",
"c_cpp.debuggers.symbolOptions.description": "Options to control how symbols (.pdb files) are found and loaded.",
"c_cpp.debuggers.unknownBreakpointHandling.description": "Controls how breakpoints set externally (usually via raw GDB commands) are handled when hit.\nAllowed values are \"throw\", which acts as if an exception was thrown by the application, and \"stop\", which only pauses the debug session. The default value is \"throw\".",
"c_cpp.debuggers.debuginfod.description": "Controls GDB's debuginfod behavior for downloading debug symbols from debuginfod servers.",
"c_cpp.debuggers.debuginfod.enabled.description": "If true (default), GDB's debuginfod support is enabled. Set to false to prevent GDB from contacting debuginfod servers.",
"c_cpp.debuggers.debuginfod.timeout.description": "The timeout in seconds for debuginfod server requests. Default is 30. Set to 0 to use GDB/libdebuginfod defaults (no override).",
"c_cpp.debuggers.VSSymbolOptions.description": "Provides configuration for locating and loading symbols to the debug adapter.",
"c_cpp.debuggers.VSSymbolOptions.searchPaths.description": "Array of symbol server URLs (example: http\u200b://MyExampleSymbolServer) or directories (example: /build/symbols) to search for .pdb files. These directories will be searched in addition to the default locations -- next to the module and the path where the pdb was originally dropped to.",
"c_cpp.debuggers.VSSymbolOptions.searchMicrosoftSymbolServer.description": "If 'true' the Microsoft Symbol server (https\u200b://msdl.microsoft.com\u200b/download/symbols) is added to the symbols search path. If unspecified, this option defaults to 'false'.",
Expand Down
28 changes: 28 additions & 0 deletions Extension/tools/OptionsSchema.json
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,24 @@
}
}
},
"Debuginfod": {
"type": "object",
"description": "%c_cpp.debuggers.debuginfod.description%",
"default": {},
"properties": {
"enabled": {
"type": "boolean",
"description": "%c_cpp.debuggers.debuginfod.enabled.description%",
"default": true
},
"timeout": {
"type": "integer",
"description": "%c_cpp.debuggers.debuginfod.timeout.description%",
"minimum": 0,
"default": 30
}
}
},
"Variables": {
"type": "object",
"description": "%c_cpp.debuggers.variables.description%",
Expand Down Expand Up @@ -819,6 +837,11 @@
"default": "throw",
"description": "%c_cpp.debuggers.unknownBreakpointHandling.description%"
},
"debuginfod": {
"$ref": "#/definitions/Debuginfod",
"description": "%c_cpp.debuggers.debuginfod.description%",
"default": {}
},
"variables": {
"$ref": "#/definitions/Variables"
},
Expand Down Expand Up @@ -921,6 +944,11 @@
}
]
},
"debuginfod": {
"$ref": "#/definitions/Debuginfod",
"description": "%c_cpp.debuggers.debuginfod.description%",
"default": {}
},
"logging": {
"$ref": "#/definitions/Logging",
"description": "%c_cpp.debuggers.logging.description%"
Expand Down
Loading