Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
opendht
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
savoirfairelinux
opendht
Commits
85fd395c
Commit
85fd395c
authored
3 years ago
by
Sprite
Committed by
Adrien Béraud
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
cmake: simplify atomic checks
parent
0f146a35
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
cmake/CheckAtomic.cmake
+12
-50
12 additions, 50 deletions
cmake/CheckAtomic.cmake
with
12 additions
and
50 deletions
cmake/CheckAtomic.cmake
+
12
−
50
View file @
85fd395c
...
...
@@ -12,8 +12,12 @@ function(check_working_cxx_atomics varname)
CHECK_CXX_SOURCE_COMPILES
(
"
#include <atomic>
std::atomic<int> x;
std::atomic<short> y;
std::atomic<char> z;
int main() {
return x;
++z;
++y;
return ++x;
}
"
${
varname
}
)
set
(
CMAKE_REQUIRED_FLAGS
${
OLD_CMAKE_REQUIRED_FLAGS
}
)
...
...
@@ -34,22 +38,6 @@ int main() {
set
(
CMAKE_REQUIRED_FLAGS
${
OLD_CMAKE_REQUIRED_FLAGS
}
)
endfunction
(
check_working_cxx_atomics64
)
function
(
check_working_cxx_atomics_for_risc_v varname
)
set
(
OLD_CMAKE_REQUIRED_FLAGS
${
CMAKE_REQUIRED_FLAGS
}
)
set
(
CMAKE_REQUIRED_FLAGS
"
${
CMAKE_REQUIRED_FLAGS
}
-std=c++11"
)
CHECK_CXX_SOURCE_COMPILES
(
"
#include <atomic>
std::atomic<uint8_t> x;
std::atomic<uint16_t> y;
int main() {
x++;
y++;
return 0;
}
"
${
varname
}
)
set
(
CMAKE_REQUIRED_FLAGS
${
OLD_CMAKE_REQUIRED_FLAGS
}
)
endfunction
(
check_working_cxx_atomics_for_risc_v
)
# This isn't necessary on MSVC, so avoid command-line switch annoyance
# by only running on GCC-like hosts.
if
(
LLVM_COMPILER_IS_GCC_COMPATIBLE
)
...
...
@@ -57,15 +45,10 @@ if (LLVM_COMPILER_IS_GCC_COMPATIBLE)
check_working_cxx_atomics
(
HAVE_CXX_ATOMICS_WITHOUT_LIB
)
# If not, check if the library exists, and atomics work with it.
if
(
NOT HAVE_CXX_ATOMICS_WITHOUT_LIB
)
check_library_exists
(
atomic __atomic_fetch_add_4
""
HAVE_LIBATOMIC
)
if
(
HAVE_LIBATOMIC
)
list
(
APPEND CMAKE_REQUIRED_LIBRARIES
"atomic"
)
check_working_cxx_atomics
(
HAVE_CXX_ATOMICS_WITH_LIB
)
if
(
NOT HAVE_CXX_ATOMICS_WITH_LIB
)
message
(
FATAL_ERROR
"Host compiler must support std::atomic!"
)
endif
()
else
()
message
(
FATAL_ERROR
"Host compiler appears to require libatomic, but cannot find it."
)
list
(
APPEND CMAKE_REQUIRED_LIBRARIES
"atomic"
)
check_working_cxx_atomics
(
HAVE_CXX_ATOMICS_WITH_LIB
)
if
(
NOT HAVE_CXX_ATOMICS_WITH_LIB
)
message
(
FATAL_ERROR
"Host compiler must support std::atomic!"
)
endif
()
endif
()
endif
()
...
...
@@ -79,31 +62,10 @@ endif()
# If not, check if the library exists, and atomics work with it.
if
(
NOT HAVE_CXX_ATOMICS64_WITHOUT_LIB
)
check_library_exists
(
atomic __atomic_load_8
""
HAVE_CXX_LIBATOMICS64
)
if
(
HAVE_CXX_LIBATOMICS64
)
list
(
APPEND CMAKE_REQUIRED_LIBRARIES
"atomic"
)
check_working_cxx_atomics64
(
HAVE_CXX_ATOMICS64_WITH_LIB
)
if
(
NOT HAVE_CXX_ATOMICS64_WITH_LIB
)
message
(
FATAL_ERROR
"Host compiler must support 64-bit std::atomic!"
)
endif
()
else
()
message
(
FATAL_ERROR
"Host compiler appears to require libatomic for 64-bit operations, but cannot find it."
)
endif
()
endif
()
# Check for RISC-V atomic operations.
if
(
MSVC
)
set
(
HAVE_CXX_ATOMICS_RISC_V_WITHOUT_LIB True
)
else
()
check_working_cxx_atomics_for_risc_v
(
HAVE_CXX_ATOMICS_RISC_V_WITHOUT_LIB
)
endif
()
# If not, check if the library exists, and atomics work with it.
if
(
NOT HAVE_CXX_ATOMICS_RISC_V_WITHOUT_LIB
)
list
(
APPEND CMAKE_REQUIRED_LIBRARIES
"atomic"
)
check_working_cxx_atomics
_for_risc_v
(
HAVE_CXX_ATOMICS
_RISC_V
_WITH_LIB
)
if
(
NOT HAVE_CXX_ATOMICS
_RISC_V
_WITH_LIB
)
message
(
FATAL_ERROR
"Host compiler must support
RISC-V
std::atomic!"
)
check_working_cxx_atomics
64
(
HAVE_CXX_ATOMICS
64
_WITH_LIB
)
if
(
NOT HAVE_CXX_ATOMICS
64
_WITH_LIB
)
message
(
FATAL_ERROR
"Host compiler must support
64-bit
std::atomic!"
)
endif
()
endif
()
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment