diff options
author | Lang Hames <lhames@gmail.com> | 2019-04-20 19:48:45 +0000 |
---|---|---|
committer | Lang Hames <lhames@gmail.com> | 2019-04-20 19:48:45 +0000 |
commit | daed9b10f151d696b339be147fd72d23e4db450d (patch) | |
tree | 8ce4a7a16eaa53acdb249dbaaeb996f32b635a17 /llvm/lib/ExecutionEngine | |
parent | c283fc5ebb8989e128d3e2b7e29affd7d6c27b96 (diff) | |
download | bcm5719-llvm-daed9b10f151d696b339be147fd72d23e4db450d.tar.gz bcm5719-llvm-daed9b10f151d696b339be147fd72d23e4db450d.zip |
[JITLink] Add BinaryFormat to JITLink's dependencies.
Hopefully this will fix the missing dependence on llvm::identify_magic that is
showing up on some PPC bots. E.g.
http://lab.llvm.org:8011/builders/clang-ppc64le-linux-multistage/builds/9617
llvm-svn: 358827
Diffstat (limited to 'llvm/lib/ExecutionEngine')
-rw-r--r-- | llvm/lib/ExecutionEngine/JITLink/LLVMBuild.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/ExecutionEngine/JITLink/LLVMBuild.txt b/llvm/lib/ExecutionEngine/JITLink/LLVMBuild.txt index d342bf96427..e7721a184b9 100644 --- a/llvm/lib/ExecutionEngine/JITLink/LLVMBuild.txt +++ b/llvm/lib/ExecutionEngine/JITLink/LLVMBuild.txt @@ -18,4 +18,4 @@ type = Library name = JITLink parent = ExecutionEngine -required_libraries = Object Support +required_libraries = BinaryFormat Object Support |