[CMake] Add lto subdirectory explicitly.
authorChris Bieneman <beanz@apple.com>
Thu, 10 Sep 2015 18:22:33 +0000 (18:22 +0000)
committerChris Bieneman <beanz@apple.com>
Thu, 10 Sep 2015 18:22:33 +0000 (18:22 +0000)
This is required because ExternalProject_Add requires all targets specified in the DEPENDS argument must exist before calling ExternalProject_Add.

I have a follow-up patch to clang that enables using the just-built libLTO in bootstrap builds, so we need to be able to add the LTO target as a dependency in clang.

llvm-svn: 247316

llvm/tools/CMakeLists.txt

index 2031693..aca4350 100644 (file)
@@ -30,6 +30,10 @@ if(CYGWIN OR NOT LLVM_ENABLE_PIC)
   set(LLVM_TOOL_LLVM_LTO_BUILD Off)
 endif()
 
+# Add LTO before clang, ExternalProject requires targets specified in DEPENDS
+# to exist before the call to ExternalProject_Add
+add_llvm_tool_subdirectory(lto)
+
 # Projects supported via LLVM_EXTERNAL_*_SOURCE_DIR need to be explicitly
 # specified.
 add_llvm_external_project(clang)