[Lldb-commits] [lldb] r359645 - [CMake] Correct lldbPluginProcessPOSIX dependencies

Alex Langford via lldb-commits lldb-commits at lists.llvm.org
Tue Apr 30 20:23:10 PDT 2019


Author: xiaobai
Date: Tue Apr 30 20:23:09 2019
New Revision: 359645

URL: http://llvm.org/viewvc/llvm-project?rev=359645&view=rev
Log:
[CMake] Correct lldbPluginProcessPOSIX dependencies

This plugin does not depend on lldbInterpreter. It only depends on
lldbUtility.

Modified:
    lldb/trunk/source/Plugins/Process/POSIX/CMakeLists.txt

Modified: lldb/trunk/source/Plugins/Process/POSIX/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/POSIX/CMakeLists.txt?rev=359645&r1=359644&r2=359645&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/POSIX/CMakeLists.txt (original)
+++ lldb/trunk/source/Plugins/Process/POSIX/CMakeLists.txt Tue Apr 30 20:23:09 2019
@@ -4,7 +4,7 @@ add_lldb_library(lldbPluginProcessPOSIX
   ProcessPOSIXLog.cpp
 
   LINK_LIBS
-    lldbInterpreter
+    lldbUtility
   LINK_COMPONENTS
     Support
   )




More information about the lldb-commits mailing list