[llvm-commits] [llvm] r122518 - /llvm/trunk/examples/CMakeLists.txt

Oscar Fuentes ofv at wanadoo.es
Thu Dec 23 13:27:22 PST 2010


Author: ofv
Date: Thu Dec 23 15:27:22 2010
New Revision: 122518

URL: http://llvm.org/viewvc/llvm-project?rev=122518&view=rev
Log:
Do not re-test for the existence of pthread.h.

It was causing problems on the MinGW build. See PR8849.

Modified:
    llvm/trunk/examples/CMakeLists.txt

Modified: llvm/trunk/examples/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/examples/CMakeLists.txt?rev=122518&r1=122517&r2=122518&view=diff
==============================================================================
--- llvm/trunk/examples/CMakeLists.txt (original)
+++ llvm/trunk/examples/CMakeLists.txt Thu Dec 23 15:27:22 2010
@@ -8,9 +8,6 @@
     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 )





More information about the llvm-commits mailing list