summaryrefslogtreecommitdiffstats
path: root/cmake/modules/FindAtomic.cmake
blob: 8ea3c815d74b12b68caec52e167555b6df4afbe6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#.rst:
# FindAtomic
# -----
# Finds the ATOMIC library
#
# This will define the following variables::
#
# ATOMIC_FOUND - system has ATOMIC
# ATOMIC_LIBRARIES - the ATOMIC libraries
#
# and the following imported targets::
#
#   ATOMIC::ATOMIC    - The ATOMIC library


include(CheckCXXSourceCompiles)

set(atomic_code
    "
     #include <atomic>
     #include <cstdint>
     std::atomic<uint8_t> n8 (0); // riscv64
     std::atomic<uint64_t> n64 (0); // armel, mipsel, powerpc
     int main() {
       ++n8;
       ++n64;
       return 0;
     }")

check_cxx_source_compiles("${atomic_code}" ATOMIC_LOCK_FREE_INSTRUCTIONS)

if(ATOMIC_LOCK_FREE_INSTRUCTIONS)
  set(ATOMIC_FOUND TRUE)
  set(ATOMIC_LIBRARIES)
else()
  set(CMAKE_REQUIRED_LIBRARIES "-latomic")
  check_cxx_source_compiles("${atomic_code}" ATOMIC_IN_LIBRARY)
  set(CMAKE_REQUIRED_LIBRARIES)
  if(ATOMIC_IN_LIBRARY)
    set(ATOMIC_LIBRARY atomic)
    include(FindPackageHandleStandardArgs)
    find_package_handle_standard_args(Atomic DEFAULT_MSG ATOMIC_LIBRARY)
    set(ATOMIC_LIBRARIES ${ATOMIC_LIBRARY})
    if(NOT TARGET ATOMIC::ATOMIC)
      add_library(ATOMIC::ATOMIC UNKNOWN IMPORTED)
      set_target_properties(ATOMIC::ATOMIC PROPERTIES
	      IMPORTED_LOCATION "${ATOMIC_LIBRARY}")
    endif()
    unset(ATOMIC_LIBRARY)
  else()
    if(Atomic_FIND_REQUIRED)
      message(FATAL_ERROR "Neither lock free instructions nor -latomic found.")
    endif()
  endif()
endif()
unset(atomic_code)