[Lldb-commits] [lldb] r305594 - Fix the CMake files for the new InstrumentationRuntime plugins.
Kuba Mracek via lldb-commits
lldb-commits at lists.llvm.org
Fri Jun 16 14:18:28 PDT 2017
Author: kuba.brecka
Date: Fri Jun 16 16:18:28 2017
New Revision: 305594
URL: http://llvm.org/viewvc/llvm-project?rev=305594&view=rev
Log:
Fix the CMake files for the new InstrumentationRuntime plugins.
Modified:
lldb/trunk/source/Plugins/InstrumentationRuntime/MainThreadChecker/CMakeLists.txt
lldb/trunk/source/Plugins/InstrumentationRuntime/UndefinedBehaviorSanitizer/CMakeLists.txt
Modified: lldb/trunk/source/Plugins/InstrumentationRuntime/MainThreadChecker/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/InstrumentationRuntime/MainThreadChecker/CMakeLists.txt?rev=305594&r1=305593&r2=305594&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/InstrumentationRuntime/MainThreadChecker/CMakeLists.txt (original)
+++ lldb/trunk/source/Plugins/InstrumentationRuntime/MainThreadChecker/CMakeLists.txt Fri Jun 16 16:18:28 2017
@@ -1,3 +1,13 @@
-add_lldb_library(lldbPluginInstrumentationRuntimeMainThreadChecker
+add_lldb_library(lldbPluginInstrumentationRuntimeMainThreadChecker PLUGIN
MainThreadCheckerRuntime.cpp
+
+ LINK_LIBS
+ lldbBreakpoint
+ lldbCore
+ lldbExpression
+ lldbInterpreter
+ lldbSymbol
+ lldbTarget
+ LINK_COMPONENTS
+ Support
)
Modified: lldb/trunk/source/Plugins/InstrumentationRuntime/UndefinedBehaviorSanitizer/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/InstrumentationRuntime/UndefinedBehaviorSanitizer/CMakeLists.txt?rev=305594&r1=305593&r2=305594&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/InstrumentationRuntime/UndefinedBehaviorSanitizer/CMakeLists.txt (original)
+++ lldb/trunk/source/Plugins/InstrumentationRuntime/UndefinedBehaviorSanitizer/CMakeLists.txt Fri Jun 16 16:18:28 2017
@@ -1,3 +1,13 @@
-add_lldb_library(lldbPluginInstrumentationRuntimeUndefinedBehaviorSanitizer
+add_lldb_library(lldbPluginInstrumentationRuntimeUndefinedBehaviorSanitizer PLUGIN
UndefinedBehaviorSanitizerRuntime.cpp
+
+ LINK_LIBS
+ lldbBreakpoint
+ lldbCore
+ lldbExpression
+ lldbInterpreter
+ lldbSymbol
+ lldbTarget
+ LINK_COMPONENTS
+ Support
)
More information about the lldb-commits
mailing list