From 077908a4d27b6c692b5bdc64cbdde815fbb8f1de Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Mon, 27 Apr 2015 21:08:47 +0000 Subject: [PATCH] Allow building the gold plugin even if the gold binary is not found. The gold binary is not required to build the plugin. All that is needed is for LLVM_BINUTILS_INCDIR to point to the directory containing plugin-api.h. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@235918 91177308-0d34-0410-b5e6-96231b3b80d8 --- cmake/config-ix.cmake | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/cmake/config-ix.cmake b/cmake/config-ix.cmake index c57f9006a84..3b3292c2e47 100755 --- a/cmake/config-ix.cmake +++ b/cmake/config-ix.cmake @@ -527,10 +527,8 @@ else() endif() find_program(GOLD_EXECUTABLE NAMES ld.gold ld DOC "The gold linker") -if(GOLD_EXECUTABLE) - set(LLVM_BINUTILS_INCDIR "" CACHE PATH - "PATH to binutils/include containing plugin-api.h for gold plugin.") -endif() +set(LLVM_BINUTILS_INCDIR "" CACHE PATH + "PATH to binutils/include containing plugin-api.h for gold plugin.") if(APPLE) find_program(LD64_EXECUTABLE NAMES ld DOC "The ld64 linker") -- 2.34.1