Disable pthread support in googletest if llvm was configured without threads.
[oota-llvm.git] / unittests / Makefile.unittest
index 6001c436e5ae91c2a8e2a1ff7f6054c41326987c..2a701a019d8b052c3b78b8d74243ee9a0fcf24e2 100644 (file)
@@ -27,6 +27,11 @@ CPP.Flags += -DGTEST_HAS_RTTI=0
 # supported by Clang, so force googletest to use its own tuple implementation.
 CPP.Flags += -DGTEST_USE_OWN_TR1_TUPLE
 
+# Disable pthreads if LLVM was configured without them.
+ifneq ($(HAVE_PTHREAD), 1)
+  CPP.Flags += -DGTEST_HAS_PTHREAD=0
+endif
+
 TESTLIBS = -lGoogleTest -lUnitTestMain
 
 ifeq ($(ENABLE_SHARED), 1)