1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 18:54:02 +01:00

[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
This commit is contained in:
Lang Hames 2019-04-20 19:48:45 +00:00
parent 10cceb6e9d
commit a887c59e4e
3 changed files with 4 additions and 2 deletions

View File

@ -18,4 +18,4 @@
type = Library
name = JITLink
parent = ExecutionEngine
required_libraries = Object Support
required_libraries = BinaryFormat Object Support

View File

@ -1,5 +1,6 @@
set(LLVM_LINK_COMPONENTS
${LLVM_TARGETS_TO_BUILD}
BinaryFormat
ExecutionEngine
JITLink
MC

View File

@ -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