aboutsummaryrefslogtreecommitdiff
path: root/libjava/classpath/java/security/cert/X509Certificate.java
diff options
context:
space:
mode:
authorRainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>2011-07-11 16:35:53 +0000
committerRainer Orth <ro@gcc.gnu.org>2011-07-11 16:35:53 +0000
commitfeffaec40fa025d6f55e4a12081772711706de87 (patch)
treed6f5b82d4d5d67c83f6a8af9c61143f5249255f8 /libjava/classpath/java/security/cert/X509Certificate.java
parent699010bab1c44cef9aaa8d40f1efd2f4607a356b (diff)
downloadgcc-feffaec40fa025d6f55e4a12081772711706de87.zip
gcc-feffaec40fa025d6f55e4a12081772711706de87.tar.gz
gcc-feffaec40fa025d6f55e4a12081772711706de87.tar.bz2
sol2.h [!USE_GLD] (CTORS_SECTION_ASM_OP): Define.
* config/i386/sol2.h [!USE_GLD] (CTORS_SECTION_ASM_OP): Define. (DTORS_SECTION_ASM_OP): Define. From-SVN: r176162
Diffstat (limited to 'libjava/classpath/java/security/cert/X509Certificate.java')
0 files changed, 0 insertions, 0 deletions
-DFAJumpThreading Unnamed repository; edit this file 'description' to name the repository.root
aboutsummaryrefslogtreecommitdiff
path: root/lldb
diff options
context:
space:
mode:
authorJonas Devlieghere <jonas@devlieghere.com>2025-04-28 17:01:03 -0700
committerGitHub <noreply@github.com>2025-04-28 17:01:03 -0700
commit82ab35961f62c8019f3b0129da42c42287a557b0 (patch)
treeeda59d540fd6f2a74fd11b678164e21778a01f38 /lldb
parente4d2ff5b014250e2707b52b6d59f5bf9e393c7bf (diff)
downloadllvm-82ab35961f62c8019f3b0129da42c42287a557b0.zip
llvm-82ab35961f62c8019f3b0129da42c42287a557b0.tar.gz
llvm-82ab35961f62c8019f3b0129da42c42287a557b0.tar.bz2
[lldb-dap] Fix machine-overridable scope (#137723)
My previous commit was a bit sloppy, I didn't spot that `lldb-dap.executable-path` already had a scope and I didn't consider that `lldb-dap.log-path` should have the same scope. This PR addresses both: - Fix duplicate scope for `lldb-dap.executable-path`. - Change scope of `lldb-dap.log-path` to `machine-overridable` too.
Diffstat (limited to 'lldb')
-rw-r--r--lldb/tools/lldb-dap/package.json5
1 files changed, 2 insertions, 3 deletions
diff --git a/lldb/tools/lldb-dap/package.json b/lldb/tools/lldb-dap/package.json
index adbb5b2..5cfd798 100644
--- a/lldb/tools/lldb-dap/package.json
+++ b/lldb/tools/lldb-dap/package.json
@@ -73,9 +73,8 @@
"title": "lldb-dap",
"properties": {
"lldb-dap.executable-path": {
- "scope": "resource",
- "type": "string",
"scope": "machine-overridable",
+ "type": "string",
"description": "The path to the lldb-dap binary, e.g. /usr/local/bin/lldb-dap"
},
"lldb-dap.arguments": {
@@ -88,7 +87,7 @@
"description": "The list of additional arguments used to launch the debug adapter executable."
},
"lldb-dap.log-path": {
- "scope": "resource",
+ "scope": "machine-overridable",
"type": "string",
"description": "The log path for lldb-dap (if any)"
},