diff options
author | Oscar Fuentes <ofv@wanadoo.es> | 2010-12-23 21:27:22 +0000 |
---|---|---|
committer | Oscar Fuentes <ofv@wanadoo.es> | 2010-12-23 21:27:22 +0000 |
commit | 4c6340188a96c4f4b5a2e8035f0a0e0b47bfa227 (patch) | |
tree | 1c58f821d4f82c0a8af982d939e0ec3bbe1e8fea /llvm/examples | |
parent | 78561c96b376136b9fdd8fd1149a9f3dd863c3c4 (diff) | |
download | bcm5719-llvm-4c6340188a96c4f4b5a2e8035f0a0e0b47bfa227.tar.gz bcm5719-llvm-4c6340188a96c4f4b5a2e8035f0a0e0b47bfa227.zip |
Do not re-test for the existence of pthread.h.
It was causing problems on the MinGW build. See PR8849.
llvm-svn: 122518
Diffstat (limited to 'llvm/examples')
-rw-r--r-- | llvm/examples/CMakeLists.txt | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/llvm/examples/CMakeLists.txt b/llvm/examples/CMakeLists.txt index f60c0eda030..54ee6cc3a3a 100644 --- a/llvm/examples/CMakeLists.txt +++ b/llvm/examples/CMakeLists.txt @@ -8,9 +8,6 @@ if( NOT WIN32 ) add_subdirectory(ExceptionDemo) endif() -include(CheckIncludeFile) -check_include_file(pthread.h HAVE_PTHREAD_H) - if( HAVE_PTHREAD_H ) add_subdirectory(ParallelJIT) endif( HAVE_PTHREAD_H ) |