1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 10:42:39 +01:00

Add CMake check for libatomic.

llvm-svn: 217666
This commit is contained in:
Evgeniy Stepanov 2014-09-12 11:08:59 +00:00
parent ad466ef0b8
commit 6602036ef9
3 changed files with 8 additions and 3 deletions

View File

@ -2,6 +2,11 @@
INCLUDE(CheckCXXSourceCompiles)
check_library_exists(atomic __atomic_fetch_add_4 "" HAVE_LIBATOMIC)
if (HAVE_LIBATOMIC)
list(APPEND CMAKE_REQUIRED_LIBRARIES "atomic")
endif()
CHECK_CXX_SOURCE_COMPILES("
#ifdef _MSC_VER
#include <windows.h>

View File

@ -25,9 +25,6 @@ if(NOT LLVM_FORCE_USE_OLD_TOOLCHAIN)
set(OLD_CMAKE_REQUIRED_FLAGS ${CMAKE_REQUIRED_FLAGS})
set(OLD_CMAKE_REQUIRED_LIBRARIES ${CMAKE_REQUIRED_LIBRARIES})
set(CMAKE_REQUIRED_FLAGS "-std=c++0x")
if (ANDROID)
set(CMAKE_REQUIRED_LIBRARIES "atomic")
endif()
check_cxx_source_compiles("
#include <atomic>
std::atomic<float> x(0.0f);

View File

@ -132,6 +132,9 @@ if( NOT MSVC )
set(system_libs ${system_libs} ${TERMINFO_LIBS})
endif()
endif()
if( LLVM_ENABLE_THREADS AND HAVE_LIBATOMIC )
set(system_libs ${system_libs} atomic)
endif()
if( LLVM_ENABLE_THREADS AND HAVE_LIBPTHREAD )
set(system_libs ${system_libs} pthread)
endif()