diff options
author | Chris Bieneman <beanz@apple.com> | 2015-12-16 18:30:36 +0000 |
---|---|---|
committer | Chris Bieneman <beanz@apple.com> | 2015-12-16 18:30:36 +0000 |
commit | d6f5f24a298f70485c24ab31496b44cf6fd501ef (patch) | |
tree | 623c08b3e8ca9c5334a3e5d14c6de8274fc2eb50 | |
parent | 83ebad370c4352c9644ab480c983d551150d1999 (diff) | |
download | bcm5719-llvm-d6f5f24a298f70485c24ab31496b44cf6fd501ef.tar.gz bcm5719-llvm-d6f5f24a298f70485c24ab31496b44cf6fd501ef.zip |
[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.
llvm-svn: 255794
-rw-r--r-- | llvm/tools/CMakeLists.txt | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/llvm/tools/CMakeLists.txt b/llvm/tools/CMakeLists.txt index 85b01c312cf..9b89d87fc57 100644 --- a/llvm/tools/CMakeLists.txt +++ b/llvm/tools/CMakeLists.txt @@ -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. |