mirror of
https://github.com/transmission/transmission
synced 2024-12-21 23:32:35 +00:00
build with -latomic on platforms that need it (#6774)
This commit is contained in:
parent
b565e076a9
commit
d42d0f3f3f
2 changed files with 45 additions and 0 deletions
43
cmake/CheckAtomic.cmake
Normal file
43
cmake/CheckAtomic.cmake
Normal file
|
@ -0,0 +1,43 @@
|
||||||
|
# - Try to find if 64-bits atomics need -latomic linking
|
||||||
|
# Once done this will define
|
||||||
|
# HAVE_CXX_ATOMICS_WITHOUT_LIB - Whether atomic types work without -latomic
|
||||||
|
|
||||||
|
include(CheckCXXSourceCompiles)
|
||||||
|
include(CheckLibraryExists)
|
||||||
|
|
||||||
|
# Sometimes linking against libatomic is required for atomic ops, if
|
||||||
|
# the platform doesn't support lock-free atomics.
|
||||||
|
|
||||||
|
function(check_working_cxx_atomics VARNAME)
|
||||||
|
check_cxx_source_compiles("
|
||||||
|
#include <atomic>
|
||||||
|
int main() {
|
||||||
|
std::atomic<long long> x;
|
||||||
|
return std::atomic_is_lock_free(&x);
|
||||||
|
}
|
||||||
|
" ${VARNAME})
|
||||||
|
endfunction()
|
||||||
|
|
||||||
|
# Check for atomic operations.
|
||||||
|
if(MSVC)
|
||||||
|
# This isn't necessary on MSVC.
|
||||||
|
set(HAVE_CXX_ATOMICS_WITHOUT_LIB TRUE)
|
||||||
|
else()
|
||||||
|
# First check if atomics work without the library.
|
||||||
|
check_working_cxx_atomics(HAVE_CXX_ATOMICS_WITHOUT_LIB)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
# If not, check if the library exists, and atomics work with it.
|
||||||
|
if(NOT HAVE_CXX_ATOMICS_WITHOUT_LIB)
|
||||||
|
check_library_exists(atomic __atomic_load_8 "" HAVE_LIBATOMIC)
|
||||||
|
if(NOT HAVE_LIBATOMIC)
|
||||||
|
message(STATUS "Host compiler appears to require libatomic, but cannot locate it.")
|
||||||
|
endif()
|
||||||
|
|
||||||
|
list(APPEND CMAKE_REQUIRED_LIBRARIES "atomic")
|
||||||
|
check_working_cxx_atomics(HAVE_CXX_ATOMICS_WITH_LIB)
|
||||||
|
list(REMOVE_ITEM CMAKE_REQUIRED_LIBRARIES "atomic")
|
||||||
|
if(NOT HAVE_CXX_ATOMICS_WITH_LIB)
|
||||||
|
message(FATAL_ERROR "Host compiler must support std::atomic!")
|
||||||
|
endif()
|
||||||
|
endif()
|
|
@ -1,3 +1,4 @@
|
||||||
|
include(CheckAtomic)
|
||||||
include(CheckLibraryExists)
|
include(CheckLibraryExists)
|
||||||
include(CheckSymbolExists)
|
include(CheckSymbolExists)
|
||||||
|
|
||||||
|
@ -298,6 +299,7 @@ target_link_libraries(${TR_NAME}
|
||||||
$<$<BOOL:${WIN32}>:shlwapi>
|
$<$<BOOL:${WIN32}>:shlwapi>
|
||||||
"$<$<BOOL:${APPLE}>:-framework Foundation>"
|
"$<$<BOOL:${APPLE}>:-framework Foundation>"
|
||||||
"$<$<BOOL:${ANDROID}>:${log-lib}>"
|
"$<$<BOOL:${ANDROID}>:${log-lib}>"
|
||||||
|
$<$<BOOL:${HAVE_LIBATOMIC}>:atomic>
|
||||||
PUBLIC
|
PUBLIC
|
||||||
transmission::crypto_impl
|
transmission::crypto_impl
|
||||||
fmt::fmt-header-only
|
fmt::fmt-header-only
|
||||||
|
|
Loading…
Reference in a new issue