X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=tools%2Fgold%2FCMakeLists.txt;h=eb4b6e6aae53afa5b489275a592027b4c40c212c;hb=adf01b3f18442ae8db6b8948e70d82d9df415119;hp=d8633e6e47b133f46c232145bc8c89c043c52581;hpb=4839ded3bdf83a47c581b818e295669533cc9a9b;p=oota-llvm.git diff --git a/tools/gold/CMakeLists.txt b/tools/gold/CMakeLists.txt index d8633e6e47b..eb4b6e6aae5 100644 --- a/tools/gold/CMakeLists.txt +++ b/tools/gold/CMakeLists.txt @@ -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.") -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.") else() include_directories( ${LLVM_BINUTILS_INCDIR} )