diff options
author | Daniel Dunbar <daniel@zuster.org> | 2011-11-12 02:10:57 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2011-11-12 02:10:57 +0000 |
commit | b8ebca83f4dff04ba21cc97673003f0bd35a2e49 (patch) | |
tree | bbd5da231b9ff4baa53da5bc6f5e5ad15496378f /lib/ExecutionEngine | |
parent | 75f69e3a3dff78cb89ded1d6c96ccb65603a82d9 (diff) | |
download | external_llvm-b8ebca83f4dff04ba21cc97673003f0bd35a2e49.zip external_llvm-b8ebca83f4dff04ba21cc97673003f0bd35a2e49.tar.gz external_llvm-b8ebca83f4dff04ba21cc97673003f0bd35a2e49.tar.bz2 |
build: Attempt to rectify inconsistencies between CMake and LLVMBuild versions of explicit dependencies.
- The hope is that we have a tool/test to verify these are accurate (and tight) soon.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@144444 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/ExecutionEngine')
-rw-r--r-- | lib/ExecutionEngine/JIT/CMakeLists.txt | 3 | ||||
-rw-r--r-- | lib/ExecutionEngine/JIT/LLVMBuild.txt | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/lib/ExecutionEngine/JIT/CMakeLists.txt b/lib/ExecutionEngine/JIT/CMakeLists.txt index 92aa76a..813ccce 100644 --- a/lib/ExecutionEngine/JIT/CMakeLists.txt +++ b/lib/ExecutionEngine/JIT/CMakeLists.txt @@ -12,10 +12,11 @@ add_llvm_library(LLVMJIT ) add_llvm_library_dependencies(LLVMJIT + LLVMCodeGen LLVMCore LLVMExecutionEngine + LLVMMC LLVMRuntimeDyld LLVMSupport LLVMTarget - LLVMCodeGen ) diff --git a/lib/ExecutionEngine/JIT/LLVMBuild.txt b/lib/ExecutionEngine/JIT/LLVMBuild.txt index b974713..21cb300 100644 --- a/lib/ExecutionEngine/JIT/LLVMBuild.txt +++ b/lib/ExecutionEngine/JIT/LLVMBuild.txt @@ -19,5 +19,5 @@ type = Library name = JIT parent = ExecutionEngine -required_libraries = CodeGen Core ExecutionEngine MC Support Target +required_libraries = CodeGen Core ExecutionEngine MC RuntimeDyld Support Target |