1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-12-04 23:58:07 +00:00

Fix building in some environments

Boost::interprocess seems to need linking against librt.so in some systems
This commit is contained in:
Carles Fernandez
2024-12-22 00:21:11 +01:00
parent 381cf4fb3c
commit c93f07176a
3 changed files with 17 additions and 0 deletions

View File

@@ -1084,6 +1084,15 @@ endif()
################################################################################
# Detect availability of shm_open
################################################################################
unset(HAVE_SHM_OPEN CACHE)
include(CheckFunctionExists)
check_function_exists(shm_open HAVE_SHM_OPEN)
################################################################################
# volk_gnsssdr module - GNSS-SDR's own VOLK library
################################################################################