summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2022-02-28 18:09:19 (GMT)
committerBrad King <brad.king@kitware.com>2022-02-28 18:09:19 (GMT)
commit7a16688f027d0139ad26a3e3ab71495eb5a2f54f (patch)
tree6c2471fa8be9515f17593d0ade8b38407d919307 /Modules
parentfa9bba4905f554fc51d2c7437f73073e0a87e8a5 (diff)
parentc6da90bd39f3e03ba6a2a4cfac0d179e04e0b236 (diff)
downloadCMake-7a16688f027d0139ad26a3e3ab71495eb5a2f54f.zip
CMake-7a16688f027d0139ad26a3e3ab71495eb5a2f54f.tar.gz
CMake-7a16688f027d0139ad26a3e3ab71495eb5a2f54f.tar.bz2
Merge branch 'FindThreads-revert-libc-pthread-flag' into release-3.22
Merge-request: !7025
Diffstat (limited to 'Modules')
-rw-r--r--Modules/FindThreads.cmake19
1 files changed, 8 insertions, 11 deletions
diff --git a/Modules/FindThreads.cmake b/Modules/FindThreads.cmake
index 4198374..e4d6cf3 100644
--- a/Modules/FindThreads.cmake
+++ b/Modules/FindThreads.cmake
@@ -164,21 +164,18 @@ if(CMAKE_HAVE_PTHREAD_H)
elseif(CMAKE_CXX_COMPILER_LOADED)
CHECK_CXX_SOURCE_COMPILES("${PTHREAD_C_CXX_TEST_SOURCE}" CMAKE_HAVE_LIBC_PTHREAD)
endif()
-
- # Check for -pthread first if enabled. This is the recommended
- # way, but not backwards compatible as one must also pass -pthread
- # as compiler flag then.
- if(THREADS_PREFER_PTHREAD_FLAG)
- _check_pthreads_flag()
- endif()
-
- if(Threads_FOUND)
- # do nothing, we are done
- elseif(CMAKE_HAVE_LIBC_PTHREAD)
+ if(CMAKE_HAVE_LIBC_PTHREAD)
set(CMAKE_THREAD_LIBS_INIT "")
set(CMAKE_HAVE_THREADS_LIBRARY 1)
set(Threads_FOUND TRUE)
else()
+ # Check for -pthread first if enabled. This is the recommended
+ # way, but not backwards compatible as one must also pass -pthread
+ # as compiler flag then.
+ if (THREADS_PREFER_PTHREAD_FLAG)
+ _check_pthreads_flag()
+ endif ()
+
if(CMAKE_SYSTEM MATCHES "GHS-MULTI")
_check_threads_lib(posix pthread_create CMAKE_HAVE_PTHREADS_CREATE)
endif()