[llvm] r196902 - [CMake] lli/CMakeLists.txt: Move add_subdirectory(ChildTarget) to the front. It depends on nothing described in LLVM_LINK_COMPONENTS.
NAKAMURA Takumi
geek4civic at gmail.com
Tue Dec 10 02:30:08 PST 2013
Author: chapuni
Date: Tue Dec 10 04:30:08 2013
New Revision: 196902
URL: http://llvm.org/viewvc/llvm-project?rev=196902&view=rev
Log:
[CMake] lli/CMakeLists.txt: Move add_subdirectory(ChildTarget) to the front. It depends on nothing described in LLVM_LINK_COMPONENTS.
Modified:
llvm/trunk/tools/lli/CMakeLists.txt
Modified: llvm/trunk/tools/lli/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/lli/CMakeLists.txt?rev=196902&r1=196901&r2=196902&view=diff
==============================================================================
--- llvm/trunk/tools/lli/CMakeLists.txt (original)
+++ llvm/trunk/tools/lli/CMakeLists.txt Tue Dec 10 04:30:08 2013
@@ -1,8 +1,7 @@
+add_subdirectory(ChildTarget)
set(LLVM_LINK_COMPONENTS mcjit jit interpreter nativecodegen bitreader asmparser irreader selectiondag native instrumentation)
-add_subdirectory(ChildTarget)
-
if( LLVM_USE_OPROFILE )
set(LLVM_LINK_COMPONENTS
${LLVM_LINK_COMPONENTS}
More information about the llvm-commits
mailing list