diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-06-21 22:17:51 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2012-06-21 22:17:51 +0000 |
commit | 6fed668d25e00d0974404bd24912d35a475650cd (patch) | |
tree | 6d66ea3284a107be37bdfd9541912da9708cb4fe /llvm/unittests/ExecutionEngine | |
parent | e14e13d971ff948d109f4848067764b10d5c7a1a (diff) | |
download | bcm5719-llvm-6fed668d25e00d0974404bd24912d35a475650cd.tar.gz bcm5719-llvm-6fed668d25e00d0974404bd24912d35a475650cd.zip |
llvm/unittests: Simplify LINK_COMPONENTS.
llvm-svn: 158942
Diffstat (limited to 'llvm/unittests/ExecutionEngine')
-rw-r--r-- | llvm/unittests/ExecutionEngine/CMakeLists.txt | 2 | ||||
-rw-r--r-- | llvm/unittests/ExecutionEngine/JIT/CMakeLists.txt | 1 | ||||
-rw-r--r-- | llvm/unittests/ExecutionEngine/JIT/Makefile | 2 | ||||
-rw-r--r-- | llvm/unittests/ExecutionEngine/Makefile | 2 |
4 files changed, 2 insertions, 5 deletions
diff --git a/llvm/unittests/ExecutionEngine/CMakeLists.txt b/llvm/unittests/ExecutionEngine/CMakeLists.txt index 5ca99046bea..5fffadd4ca0 100644 --- a/llvm/unittests/ExecutionEngine/CMakeLists.txt +++ b/llvm/unittests/ExecutionEngine/CMakeLists.txt @@ -1,7 +1,5 @@ set(LLVM_LINK_COMPONENTS - jit interpreter - nativecodegen ) add_llvm_unittest(ExecutionEngineTests diff --git a/llvm/unittests/ExecutionEngine/JIT/CMakeLists.txt b/llvm/unittests/ExecutionEngine/JIT/CMakeLists.txt index 8cc2fbb271e..d43d72de409 100644 --- a/llvm/unittests/ExecutionEngine/JIT/CMakeLists.txt +++ b/llvm/unittests/ExecutionEngine/JIT/CMakeLists.txt @@ -2,7 +2,6 @@ set(LLVM_LINK_COMPONENTS asmparser bitreader bitwriter - interpreter jit nativecodegen ) diff --git a/llvm/unittests/ExecutionEngine/JIT/Makefile b/llvm/unittests/ExecutionEngine/JIT/Makefile index c404fb002a6..b535a6b2960 100644 --- a/llvm/unittests/ExecutionEngine/JIT/Makefile +++ b/llvm/unittests/ExecutionEngine/JIT/Makefile @@ -9,7 +9,7 @@ LEVEL = ../../.. TESTNAME = JIT -LINK_COMPONENTS := asmparser bitreader bitwriter core jit native support +LINK_COMPONENTS := asmparser bitreader bitwriter jit native include $(LEVEL)/Makefile.config diff --git a/llvm/unittests/ExecutionEngine/Makefile b/llvm/unittests/ExecutionEngine/Makefile index a0395cdad3b..63508d2399b 100644 --- a/llvm/unittests/ExecutionEngine/Makefile +++ b/llvm/unittests/ExecutionEngine/Makefile @@ -9,7 +9,7 @@ LEVEL = ../.. TESTNAME = ExecutionEngine -LINK_COMPONENTS := engine interpreter +LINK_COMPONENTS :=interpreter PARALLEL_DIRS = JIT include $(LEVEL)/Makefile.config |