From: Tom Roeder Date: Fri, 10 Jan 2014 22:48:35 +0000 (+0000) Subject: Restore the library dependency of LLVMgold on LTO; this was removed recently but X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=b2c6a6c0bd2aede046eceb4594132dabfed86aac;p=oota-llvm.git Restore the library dependency of LLVMgold on LTO; this was removed recently but is needed for LLVMgold to load in ld. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@198965 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/gold/CMakeLists.txt b/tools/gold/CMakeLists.txt index e0a33590181..98e26421e01 100644 --- a/tools/gold/CMakeLists.txt +++ b/tools/gold/CMakeLists.txt @@ -20,3 +20,5 @@ else() gold-plugin.cpp ) endif() + +target_link_libraries(LLVMgold LTO)