[Lldb-commits] [PATCH] D13027: [lldb-mi] Fix unresolved reference to llvm_regcomp and llvm_regfree.
Daniel Sanders via lldb-commits
lldb-commits at lists.llvm.org
Mon Sep 21 10:27:47 PDT 2015
dsanders created this revision.
dsanders added subscribers: lldb-commits, labath, krytarowski.
http://reviews.llvm.org/D13027
Files:
tools/lldb-mi/CMakeLists.txt
Index: tools/lldb-mi/CMakeLists.txt
===================================================================
--- tools/lldb-mi/CMakeLists.txt
+++ tools/lldb-mi/CMakeLists.txt
@@ -83,6 +83,8 @@
)
endif ()
+include(../../cmake/LLDBDependencies.cmake)
+
add_lldb_executable(lldb-mi ${LLDB_MI_SOURCES})
target_link_libraries(lldb-mi liblldb)
@@ -92,7 +94,7 @@
# TODO: why isn't this done by add_lldb_executable?
#target_link_libraries(lldb-mi ${LLDB_USED_LIBS})
-#llvm_config(lldb-mi ${LLVM_LINK_COMPONENTS})
+llvm_config(lldb-mi ${LLVM_LINK_COMPONENTS})
set_target_properties(lldb-mi PROPERTIES VERSION ${LLDB_VERSION})
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D13027.35278.patch
Type: text/x-patch
Size: 633 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20150921/adede660/attachment.bin>
More information about the lldb-commits
mailing list