CMake: Revert r79144. It reverted a change necessary for correct
parallel builds.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79177 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/cmake/modules/AddLLVM.cmake b/cmake/modules/AddLLVM.cmake
index 0d263f8..5971603 100755
--- a/cmake/modules/AddLLVM.cmake
+++ b/cmake/modules/AddLLVM.cmake
@@ -12,6 +12,13 @@
install(TARGETS ${name}
LIBRARY DESTINATION lib${LLVM_LIBDIR_SUFFIX}
ARCHIVE DESTINATION lib${LLVM_LIBDIR_SUFFIX})
+ # The LLVM Target library shall be built before its sublibraries
+ # (asmprinter, etc) because those may use tablegenned files which
+ # generation is triggered by the main LLVM target library. Necessary
+ # for parallel builds:
+ if( CURRENT_LLVM_TARGET )
+ add_dependencies(${name} LLVM${CURRENT_LLVM_TARGET})
+ endif()
endmacro(add_llvm_library name)