From 7e93f3b7230b2e067d6bf0416ad1d431df1291c9 Mon Sep 17 00:00:00 2001 From: Pete Cooper Date: Mon, 4 May 2015 22:33:39 +0000 Subject: [PATCH] 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 --- tools/lli/CMakeLists.txt | 1 + tools/lli/LLVMBuild.txt | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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 -- 2.34.1