diff options
author | Jordan Rupprecht <rupprecht@google.com> | 2019-07-29 17:22:10 +0000 |
---|---|---|
committer | Jordan Rupprecht <rupprecht@google.com> | 2019-07-29 17:22:10 +0000 |
commit | 6a253d378bc05c30b3d9f32fdaf973714de3e99c (patch) | |
tree | 9e3722cff34605421a0d83ed28171802e24ce78f /lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemoteProperties.td | |
parent | 962c03fac4fca625fd6c7415ace098ff92e0fbc8 (diff) | |
download | bcm5719-llvm-6a253d378bc05c30b3d9f32fdaf973714de3e99c.tar.gz bcm5719-llvm-6a253d378bc05c30b3d9f32fdaf973714de3e99c.zip |
[lldb] Qualify includes of Properties[Enum].inc files. NFC
Summary:
This is a bit more explicit, and makes it possible to build LLDB without
varying the -I lines per-directory.
(The latter is useful because many build systems only allow this to be
configured per-library, and LLDB is insufficiently layered to be split into
multiple libraries on stricter build systems).
(My comment on D65185 has some more context)
Reviewers: JDevlieghere, labath, chandlerc, jdoerfert
Reviewed By: labath
Subscribers: mgorny, lldb-commits
Tags: #lldb
Differential Revision: https://reviews.llvm.org/D65397
Patch by Sam McCall!
llvm-svn: 367241
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemoteProperties.td')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemoteProperties.td | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemoteProperties.td b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemoteProperties.td new file mode 100644 index 00000000000..16e7723e306 --- /dev/null +++ b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemoteProperties.td @@ -0,0 +1,16 @@ +include "../../../../include/lldb/Core/PropertiesBase.td" + +let Definition = "processgdbremote" in { + def PacketTimeout: Property<"packet-timeout", "UInt64">, + Global, + DefaultUnsignedValue<5>, + Desc<"Specify the default packet timeout in seconds.">; + def TargetDefinitionFile: Property<"target-definition-file", "FileSpec">, + Global, + DefaultStringValue<"">, + Desc<"The file that provides the description for remote target registers.">; + def UseSVR4: Property<"use-libraries-svr4", "Boolean">, + Global, + DefaultFalse, + Desc<"If true, the libraries-svr4 feature will be used to get a hold of the process's loaded modules.">; +} |