From e50f74474378e2179e05c770516292ed152ed8db 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 --- llvm/tools/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/llvm/tools/CMakeLists.txt b/llvm/tools/CMakeLists.txt index f50382b..8ca7bae 100644 --- a/llvm/tools/CMakeLists.txt +++ b/llvm/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) -- 2.7.4