From 4b442836fcb77e6d6b731a6d6bb3f31b36bc8870 Mon Sep 17 00:00:00 2001 From: Oscar Fuentes Date: Tue, 18 Nov 2008 23:45:21 +0000 Subject: [PATCH] CMake: Option for enabling/disabling threads. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@59565 91177308-0d34-0410-b5e6-96231b3b80d8 --- CMakeLists.txt | 2 ++ cmake/config-ix.cmake | 13 +++++++++++-- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6ef79b91deb..327a6935c56 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -50,6 +50,8 @@ else( MSVC ) CACHE STRING "Semicolon-separated list of targets to build, or \"all\".") endif( MSVC ) +option(LLVM_ENABLE_THREADS "Use threads if available." ON) + if( LLVM_TARGETS_TO_BUILD STREQUAL "all" ) set( LLVM_TARGETS_TO_BUILD ${LLVM_ALL_TARGETS} ) endif() diff --git a/cmake/config-ix.cmake b/cmake/config-ix.cmake index b8be58e1088..fd6f73b31cd 100755 --- a/cmake/config-ix.cmake +++ b/cmake/config-ix.cmake @@ -93,8 +93,17 @@ endif( NOT MSVC ) # FIXME: Signal handler return type, currently hardcoded to 'void' set(RETSIGTYPE void) -# Disable multithreading for now -set(ENABLE_THREADS 0) +if( LLVM_ENABLE_THREADS ) + if( HAVE_PTHREAD_H OR WIN32 ) + set(ENABLE_THREADS 1) + endif() +endif() + +if( ENABLE_THREADS ) + message(STATUS "Threads enabled.") +else( ENABLE_THREADS ) + message(STATUS "Threads disabled.") +endif() configure_file( ${LLVM_MAIN_INCLUDE_DIR}/llvm/Config/config.h.cmake