summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2012-08-31 22:39:14 +0000
committerEric Christopher <echristo@apple.com>2012-08-31 22:39:14 +0000
commit8ccd2863e9f168aa2f641a80610486a76fcab6c0 (patch)
tree89f4342f923fe912acf83ff6496aa27969154037
parente9a3ed4d7127a7f5c57df314a471c4d1bfbe4e0c (diff)
downloadbcm5719-llvm-8ccd2863e9f168aa2f641a80610486a76fcab6c0.tar.gz
bcm5719-llvm-8ccd2863e9f168aa2f641a80610486a76fcab6c0.zip
Make sure to build libpthread to check for HAVE_PTHREAD_MUTEX_LOCK.
Patch by Brad Smith! llvm-svn: 163033
-rwxr-xr-xllvm/cmake/config-ix.cmake4
1 files changed, 1 insertions, 3 deletions
diff --git a/llvm/cmake/config-ix.cmake b/llvm/cmake/config-ix.cmake
index 94cc5551c8d..85af1f54db6 100755
--- a/llvm/cmake/config-ix.cmake
+++ b/llvm/cmake/config-ix.cmake
@@ -87,6 +87,7 @@ if( NOT PURE_WINDOWS )
check_library_exists(pthread pthread_create "" HAVE_LIBPTHREAD)
check_library_exists(pthread pthread_getspecific "" HAVE_PTHREAD_GETSPECIFIC)
check_library_exists(pthread pthread_rwlock_init "" HAVE_PTHREAD_RWLOCK_INIT)
+ check_library_exists(pthread pthread_mutex_lock "" HAVE_PTHREAD_MUTEX_LOCK)
check_library_exists(dl dlopen "" HAVE_LIBDL)
endif()
@@ -134,9 +135,6 @@ check_symbol_exists(strchr string.h HAVE_STRCHR)
check_symbol_exists(strcmp string.h HAVE_STRCMP)
check_symbol_exists(strdup string.h HAVE_STRDUP)
check_symbol_exists(strrchr string.h HAVE_STRRCHR)
-if( NOT PURE_WINDOWS )
- check_symbol_exists(pthread_mutex_lock pthread.h HAVE_PTHREAD_MUTEX_LOCK)
-endif()
check_symbol_exists(sbrk unistd.h HAVE_SBRK)
check_symbol_exists(srand48 stdlib.h HAVE_RAND48_SRAND48)
if( HAVE_RAND48_SRAND48 )
OpenPOWER on IntegriCloud