1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

CMake builds gold by default since revision 127466. This is

inconsistent with autoconf, which by default set BINUTILS_INCDIR to
empty and exclude gold from target list.

Based on a patch by Haitao Li!

llvm-svn: 131229
This commit is contained in:
Oscar Fuentes 2011-05-12 11:26:21 +00:00
parent 5ff60c7364
commit d323e73950

View File

@ -1,7 +1,9 @@
set(LLVM_BINUTILS_INCDIR "/usr/include" CACHE PATH set(LLVM_BINUTILS_INCDIR "" CACHE PATH
"PATH to binutils/include containing plugin-api.h for gold plugin.") "PATH to binutils/include containing plugin-api.h for gold plugin.")
if( NOT EXISTS "${LLVM_BINUTILS_INCDIR}/plugin-api.h" ) if( NOT LLVM_BINUTILS_INCDIR )
# Nothing to say.
elseif( NOT EXISTS "${LLVM_BINUTILS_INCDIR}/plugin-api.h" )
message(STATUS "plugin-api.h not found. gold plugin excluded from the build.") message(STATUS "plugin-api.h not found. gold plugin excluded from the build.")
else() else()
include_directories( ${LLVM_BINUTILS_INCDIR} ) include_directories( ${LLVM_BINUTILS_INCDIR} )