diff options
author | Lang Hames <lhames@gmail.com> | 2019-04-20 22:15:57 +0000 |
---|---|---|
committer | Lang Hames <lhames@gmail.com> | 2019-04-20 22:15:57 +0000 |
commit | 5004abcd86fa28f0907c36b1e93796903a5775cf (patch) | |
tree | 2ec2c08feefd285b0670bf1640255d4ed8e4ea07 /llvm/lib/ExecutionEngine | |
parent | 7f77a231fa8c431d30338e48d935f2672b781df4 (diff) | |
download | bcm5719-llvm-5004abcd86fa28f0907c36b1e93796903a5775cf.tar.gz bcm5719-llvm-5004abcd86fa28f0907c36b1e93796903a5775cf.zip |
[JITLink][ORC] Add JITLink to the list of dependencies for ORC.
The new ObjectLinkingLayer in ORC depends on JITLink.
This should fix the build error at
http://lab.llvm.org:8011/builders/clang-ppc64le-linux-multistage/builds/9621
llvm-svn: 358832
Diffstat (limited to 'llvm/lib/ExecutionEngine')
-rw-r--r-- | llvm/lib/ExecutionEngine/Orc/LLVMBuild.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/ExecutionEngine/Orc/LLVMBuild.txt b/llvm/lib/ExecutionEngine/Orc/LLVMBuild.txt index c5af0475c9c..af7ef49f5eb 100644 --- a/llvm/lib/ExecutionEngine/Orc/LLVMBuild.txt +++ b/llvm/lib/ExecutionEngine/Orc/LLVMBuild.txt @@ -18,4 +18,5 @@ type = Library name = OrcJIT parent = ExecutionEngine -required_libraries = Core ExecutionEngine Object MC RuntimeDyld Support Target TransformUtils +required_libraries = Core ExecutionEngine JITLink Object MC RuntimeDyld Support + Target TransformUtils |