Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | cmake: Remove libatomic check on macOS | Steven Koo | 2022-02-07 | 1 | -1/+1 |
| | | | | | | | This removes the libatomic check on macOS. Like MSVC, just assume that it's built in. Signed-off-by: Steven Koo <steven.koo@ni.com> | ||||
* | cmake: added libatomic check for boost/lockfree/queue.hpp | Jaroslav Škarvada | 2022-02-01 | 1 | -0/+31 |
| | | | | | | | | | The boost/lockfree/queue.hpp requires linking with the libatomic on some platforms (e.g. s390x). Fixes #410 Signed-off-by: Jaroslav Škarvada <jskarvad@redhat.com> | ||||
* | cmake: Add check for libatomic linking requirement | Martin Braun | 2021-08-27 | 1 | -0/+80 |
Some archs require linking against libatomic, others don't. We add some CMake code that checks for libatomic.so requirement if: - We are not on MSVC, AND - Compiling std::atomics code would cause a linker error. We then check for the existence of libatomic.so, and fail if we can't find it. |