[Lldb-commits] [lldb] 64b3bbc - [lldb] Remove NO_PLUGIN_DEPENDENCIES from lldbTarget

Alex Langford via lldb-commits lldb-commits at lists.llvm.org
Mon Mar 27 13:39:27 PDT 2023


Author: Alex Langford
Date: 2023-03-27T13:35:48-07:00
New Revision: 64b3bbc5220615b13d4a003877c773b8745a4d00

URL: https://github.com/llvm/llvm-project/commit/64b3bbc5220615b13d4a003877c773b8745a4d00
DIFF: https://github.com/llvm/llvm-project/commit/64b3bbc5220615b13d4a003877c773b8745a4d00.diff

LOG: [lldb] Remove NO_PLUGIN_DEPENDENCIES from lldbTarget

As discussed in https://reviews.llvm.org/D146668 I will be reverting
0c5cee779929f840f4f286c5894a01f583ee7b4a and ee232506b870ce5282cc4da5ca493d41d361feb3.
I'm removing NO_PLUGIN_DEPENDENCIES from lldbTarget first so that these
reverts will not leave LLDB in a bad state afterwards.

Added: 
    

Modified: 
    lldb/source/Target/CMakeLists.txt

Removed: 
    


################################################################################
diff  --git a/lldb/source/Target/CMakeLists.txt b/lldb/source/Target/CMakeLists.txt
index 3823daf370b4f..37040294c618c 100644
--- a/lldb/source/Target/CMakeLists.txt
+++ b/lldb/source/Target/CMakeLists.txt
@@ -6,7 +6,8 @@ lldb_tablegen(TargetPropertiesEnum.inc -gen-lldb-property-enum-defs
   SOURCE TargetProperties.td
   TARGET LLDBTargetPropertiesEnumGen)
 
-add_lldb_library(lldbTarget NO_PLUGIN_DEPENDENCIES
+# TODO: Add property `NO_PLUGIN_DEPENDENCIES` to lldbTarget
+add_lldb_library(lldbTarget
   ABI.cpp
   AssertFrameRecognizer.cpp
   DynamicRegisterInfo.cpp


        


More information about the lldb-commits mailing list