From 958c8b19388975e65062b4c01b3033e9c35ee4dc Mon Sep 17 00:00:00 2001 From: Chris Bieneman Date: Fri, 26 Feb 2016 21:07:04 +0000 Subject: [PATCH] [CMake] Add the gold plugin before clang This is needed to connect dependencies between the LLVMgold plugin and the clang stage-2 builds due to limitations in ExternalProject_Add. Patch by Mike Edwards Differential Revision: http://reviews.llvm.org/D17655 llvm-svn: 262067 --- tools/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/CMakeLists.txt b/tools/CMakeLists.txt index f50382b0897..8ca7bae8971 100644 --- a/tools/CMakeLists.txt +++ b/tools/CMakeLists.txt @@ -34,6 +34,7 @@ endif() # requires targets specified in DEPENDS to exist before the call to # ExternalProject_Add. add_llvm_tool_subdirectory(lto) +add_llvm_tool_subdirectory(gold) add_llvm_tool_subdirectory(llvm-ar) add_llvm_tool_subdirectory(llvm-config) add_llvm_tool_subdirectory(llvm-profdata)