[llvm] r262067 - [CMake] Add the gold plugin before clang
Chris Bieneman via llvm-commits
llvm-commits at lists.llvm.org
Fri Feb 26 13:07:04 PST 2016
Author: cbieneman
Date: Fri Feb 26 15:07:04 2016
New Revision: 262067
URL: http://llvm.org/viewvc/llvm-project?rev=262067&view=rev
Log:
[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
Modified:
llvm/trunk/tools/CMakeLists.txt
Modified: llvm/trunk/tools/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/tools/CMakeLists.txt?rev=262067&r1=262066&r2=262067&view=diff
==============================================================================
--- llvm/trunk/tools/CMakeLists.txt (original)
+++ llvm/trunk/tools/CMakeLists.txt Fri Feb 26 15:07:04 2016
@@ -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)
More information about the llvm-commits
mailing list