[CMake] Adding llvm-profdata to the list of tools clang needs.

Bootstrapping clang to generate PGO data (patches coming soon), requires llvm-profdata targets to be generated before clang.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@255794 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Bieneman 2015-12-16 18:30:36 +00:00
parent c81f0007ce
commit 536f97b8b4

View File

@ -30,11 +30,13 @@ if(CYGWIN)
set(LLVM_TOOL_LLVM_LTO_BUILD Off)
endif()
# Add LTO, llvm-ar, and llvm-config before clang, ExternalProject requires
# targets specified in DEPENDS to exist before the call to ExternalProject_Add.
# Add LTO, llvm-ar, llvm-config, and llvm-profdata before clang, ExternalProject
# requires targets specified in DEPENDS to exist before the call to
# ExternalProject_Add.
add_llvm_tool_subdirectory(lto)
add_llvm_tool_subdirectory(llvm-ar)
add_llvm_tool_subdirectory(llvm-config)
add_llvm_tool_subdirectory(llvm-profdata)
# Projects supported via LLVM_EXTERNAL_*_SOURCE_DIR need to be explicitly
# specified.