summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorDuncan Sands <baldrick@free.fr>2013-05-14 13:29:16 +0000
committerDuncan Sands <baldrick@free.fr>2013-05-14 13:29:16 +0000
commit8305acb20062ffa37d1579d0063794432c01c26b (patch)
treeb2b931a21e13bbf8656e8c61eab91fa0299c5c8b /utils
parent15cf700b415f6477fa4152904b8e28cfa501d206 (diff)
Get the unittests compiling when building with cmake and the setting
-DLLVM_ENABLE_THREADS=false. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@181788 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r--utils/unittest/CMakeLists.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/utils/unittest/CMakeLists.txt b/utils/unittest/CMakeLists.txt
index 70ed35df2e6..8bdfee15c19 100644
--- a/utils/unittest/CMakeLists.txt
+++ b/utils/unittest/CMakeLists.txt
@@ -27,6 +27,10 @@ endif()
set(LLVM_REQUIRES_RTTI 1)
add_definitions( -DGTEST_HAS_RTTI=0 )
+if (NOT LLVM_ENABLE_THREADS)
+ add_definitions( -DGTEST_HAS_PTHREAD=0 )
+endif()
+
# Visual Studio 2012 only supports up to 8 template parameters in
# std::tr1::tuple by default, but gtest requires 10
if(MSVC AND MSVC_VERSION EQUAL 1700)