summaryrefslogtreecommitdiff
path: root/tools/lli
diff options
context:
space:
mode:
authorPete Cooper <peter_cooper@apple.com>2015-05-04 22:33:39 +0000
committerPete Cooper <peter_cooper@apple.com>2015-05-04 22:33:39 +0000
commit7e93f3b7230b2e067d6bf0416ad1d431df1291c9 (patch)
tree8695a66e7668d454c48b86c63a5eaaa8bee1dedb /tools/lli
parentee160106a131f9b79b89c5ea3b6c0e1e1d1f019d (diff)
Add TransformUtils dependency to lli.
After r236465, Orc uses ValueMaterializer and so needs to link against TransformUtils to get the ValueMaterializer::anchor(). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@236467 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/lli')
-rw-r--r--tools/lli/CMakeLists.txt1
-rw-r--r--tools/lli/LLVMBuild.txt2
2 files changed, 2 insertions, 1 deletions
diff --git a/tools/lli/CMakeLists.txt b/tools/lli/CMakeLists.txt
index f98275b5fe6..844b99464cb 100644
--- a/tools/lli/CMakeLists.txt
+++ b/tools/lli/CMakeLists.txt
@@ -14,6 +14,7 @@ set(LLVM_LINK_COMPONENTS
RuntimeDyld
SelectionDAG
Support
+ TransformUtils
native
)
diff --git a/tools/lli/LLVMBuild.txt b/tools/lli/LLVMBuild.txt
index 4c14c47bd0d..580ba9a4ded 100644
--- a/tools/lli/LLVMBuild.txt
+++ b/tools/lli/LLVMBuild.txt
@@ -22,4 +22,4 @@ subdirectories = ChildTarget
type = Tool
name = lli
parent = Tools
-required_libraries = AsmParser BitReader IRReader Instrumentation Interpreter MCJIT NativeCodeGen SelectionDAG Native
+required_libraries = AsmParser BitReader IRReader Instrumentation Interpreter MCJIT NativeCodeGen SelectionDAG TransformUtils Native