summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLang Hames <lhames@gmail.com>2019-04-20 19:48:45 +0000
committerLang Hames <lhames@gmail.com>2019-04-20 19:48:45 +0000
commitdaed9b10f151d696b339be147fd72d23e4db450d (patch)
tree8ce4a7a16eaa53acdb249dbaaeb996f32b635a17
parentc283fc5ebb8989e128d3e2b7e29affd7d6c27b96 (diff)
downloadbcm5719-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
-rw-r--r--llvm/lib/ExecutionEngine/JITLink/LLVMBuild.txt2
-rw-r--r--llvm/tools/llvm-jitlink/CMakeLists.txt1
-rw-r--r--llvm/tools/llvm-jitlink/LLVMBuild.txt3
3 files changed, 4 insertions, 2 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
diff --git a/llvm/tools/llvm-jitlink/CMakeLists.txt b/llvm/tools/llvm-jitlink/CMakeLists.txt
index c99e0345027..4bfffa99c21 100644
--- a/llvm/tools/llvm-jitlink/CMakeLists.txt
+++ b/llvm/tools/llvm-jitlink/CMakeLists.txt
@@ -1,5 +1,6 @@
set(LLVM_LINK_COMPONENTS
${LLVM_TARGETS_TO_BUILD}
+ BinaryFormat
ExecutionEngine
JITLink
MC
diff --git a/llvm/tools/llvm-jitlink/LLVMBuild.txt b/llvm/tools/llvm-jitlink/LLVMBuild.txt
index 32521e4f526..224bab58c21 100644
--- a/llvm/tools/llvm-jitlink/LLVMBuild.txt
+++ b/llvm/tools/llvm-jitlink/LLVMBuild.txt
@@ -18,4 +18,5 @@
type = Tool
name = llvm-jitlink
parent = Tools
-required_libraries = JITLink MC Object RuntimeDyld Support all-targets
+required_libraries = JITLink BinaryFormat MC Object RuntimeDyld Support
+ all-targets
OpenPOWER on IntegriCloud