You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Attempting a simple build fails to generate Makefiles. I'm using a Docker image for consistent, repeatable builds; the Dockerfile can be provided if required.
Trying to build produces this (note: CMake 3.17 reports a plethora of warnings that appear to be related to GNU Radio modules, related to unset policies; for brevity I silenced these, but I recommend updating to a modern version of CMake):
$ cmake3 -Wno-dev ..
-- Found Boost: /usr/include (found suitable version "1.53.0", minimum required is "1.35") found components: filesystem system thread chrono date_time atomic
-- Pcap include dirs set to /usr/include
-- Pcap library set to /usr/lib64/libpcap.so
-- Checking for module 'gmp'
-- No package 'gmp' found
-- Checking for module 'mpir >= 3.0'
-- No package 'mpir' found
-- Could NOT find MPIR (missing: MPIRXX_LIBRARY MPIR_LIBRARY MPIR_INCLUDE_DIR)
-- Found Boost: /usr/include (found suitable version "1.53.0", minimum required is "1.53.0") found components: date_time program_options filesystem system regex thread unit_test_framework chrono atomic
CMake Error at CMakeLists.txt:116 (message):
GnuRadio Runtime required to compile dbfcttc
-- Configuring incomplete, errors occurred!
Attempting a simple build fails to generate Makefiles. I'm using a Docker image for consistent, repeatable builds; the Dockerfile can be provided if required.
Trying to build produces this (note: CMake 3.17 reports a plethora of warnings that appear to be related to GNU Radio modules, related to unset policies; for brevity I silenced these, but I recommend updating to a modern version of CMake):
CMakeLists.txt:114 looks for "Gnuradio", but the project provides FindGnuRadioRuntime.cmake
If I change to
find_package(GnuradioRuntime)
, it works.The text was updated successfully, but these errors were encountered: