summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2013-05-03 14:48:29 +0000
committerBenjamin Kramer <benny.kra@googlemail.com>2013-05-03 14:48:29 +0000
commite050e59a47a50f7236de8a1678a6a7c5e2e693c8 (patch)
tree0367539dd7b9b810d5faccd491e43ce648c03a85 /cmake
parentd07d29213b328a04bd46781f3f7e7a6111123385 (diff)
downloadllvm-e050e59a47a50f7236de8a1678a6a7c5e2e693c8.tar.gz
llvm-e050e59a47a50f7236de8a1678a6a7c5e2e693c8.tar.bz2
llvm-e050e59a47a50f7236de8a1678a6a7c5e2e693c8.tar.xz
CMake: cxxabi.h is only available to C++ compilers, use the right check macro.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@181019 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'cmake')
-rwxr-xr-xcmake/config-ix.cmake3
1 files changed, 2 insertions, 1 deletions
diff --git a/cmake/config-ix.cmake b/cmake/config-ix.cmake
index e5bcc0e9b1..94916b83dc 100755
--- a/cmake/config-ix.cmake
+++ b/cmake/config-ix.cmake
@@ -4,6 +4,7 @@ if( WIN32 AND NOT CYGWIN )
endif()
include(CheckIncludeFile)
+include(CheckIncludeFileCXX)
include(CheckLibraryExists)
include(CheckSymbolExists)
include(CheckFunctionExists)
@@ -37,7 +38,7 @@ endfunction()
check_include_file(argz.h HAVE_ARGZ_H)
check_include_file(assert.h HAVE_ASSERT_H)
check_include_file(ctype.h HAVE_CTYPE_H)
-check_include_file(cxxabi.h HAVE_CXXABI_H)
+check_include_file_cxx(cxxabi.h HAVE_CXXABI_H)
check_include_file(dirent.h HAVE_DIRENT_H)
check_include_file(dl.h HAVE_DL_H)
check_include_file(dld.h HAVE_DLD_H)