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/DynamicLoader | |
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/DynamicLoader')
-rw-r--r-- | lldb/source/Plugins/DynamicLoader/Darwin-Kernel/CMakeLists.txt | 8 | ||||
-rw-r--r-- | lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp | 4 | ||||
-rw-r--r-- | lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernelProperties.td (renamed from lldb/source/Plugins/DynamicLoader/Darwin-Kernel/Properties.td) | 0 |
3 files changed, 6 insertions, 6 deletions
diff --git a/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/CMakeLists.txt b/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/CMakeLists.txt index b4ba84a7fde..e29ddca343f 100644 --- a/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/CMakeLists.txt +++ b/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/CMakeLists.txt @@ -1,9 +1,9 @@ -lldb_tablegen(Properties.inc -gen-lldb-property-defs - SOURCE Properties.td +lldb_tablegen(DynamicLoaderDarwinKernelProperties.inc -gen-lldb-property-defs + SOURCE DynamicLoaderDarwinKernelProperties.td TARGET LLDBPluginDynamicLoaderDarwinKernelPropertiesGen) -lldb_tablegen(PropertiesEnum.inc -gen-lldb-property-enum-defs - SOURCE Properties.td +lldb_tablegen(DynamicLoaderDarwinKernelPropertiesEnum.inc -gen-lldb-property-enum-defs + SOURCE DynamicLoaderDarwinKernelProperties.td TARGET LLDBPluginDynamicLoaderDarwinKernelPropertiesEnumGen) add_lldb_library(lldbPluginDynamicLoaderDarwinKernel PLUGIN diff --git a/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp b/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp index b6a98bcc5cd..51f128f9706 100644 --- a/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp +++ b/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp @@ -73,11 +73,11 @@ static constexpr OptionEnumValueElement g_kaslr_kernel_scan_enum_values[] = { "on 32-bit targets)."}}; #define LLDB_PROPERTIES_dynamicloaderdarwinkernel -#include "Properties.inc" +#include "DynamicLoaderDarwinKernelProperties.inc" enum { #define LLDB_PROPERTIES_dynamicloaderdarwinkernel -#include "PropertiesEnum.inc" +#include "DynamicLoaderDarwinKernelPropertiesEnum.inc" }; class DynamicLoaderDarwinKernelProperties : public Properties { diff --git a/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/Properties.td b/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernelProperties.td index 6c662d737fa..6c662d737fa 100644 --- a/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/Properties.td +++ b/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernelProperties.td |