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
After manually installing MPIR and specifying the appropriate paths for cmake, it generates this error:
$ cmake ..
-- Build type not specified: defaulting to release.
-- Found Boost: /usr/lib/aarch64-linux-gnu/cmake/Boost-1.74.0/BoostConfig.cmake (found suitable version "1.74.0", minimum required is "1.35") found components: filesystem system thread date_time chrono
-- Checking for module 'mpir >= 3.0'
-- No package 'mpir' found
-- Found MPIR: /usr/local/lib/libmpir.so
-- Found Boost: /usr/lib/aarch64-linux-gnu/cmake/Boost-1.74.0/BoostConfig.cmake (found suitable version "1.74.0", minimum required is "1.74.0") found components: date_time program_options filesystem system regex thread unit_test_framework
CMake Error at /usr/lib/aarch64-linux-gnu/cmake/gnuradio/FindTHRIFT.cmake:70 (GR_PYTHON_CHECK_MODULE):
Unknown CMake command "GR_PYTHON_CHECK_MODULE".
Call Stack (most recent call first):
/usr/share/cmake-3.18/Modules/CMakeFindDependencyMacro.cmake:47 (find_package)
/usr/lib/aarch64-linux-gnu/cmake/gnuradio/gnuradio-runtimeConfig.cmake:24 (find_dependency)
/usr/lib/aarch64-linux-gnu/cmake/gnuradio/GnuradioConfig.cmake:54 (include)
CMakeLists.txt:123 (find_package)
-- Configuring incomplete, errors occurred!
See also "/home/pi/inoui/src/gr-iio/build/CMakeFiles/CMakeOutput.log".
See also "/home/pi/inoui/src/gr-iio/build/CMakeFiles/CMakeError.log".
I'm a little confused. How does the referenced solution actually do anything on your system? It just changes the minimum CMake required but not the version used.
The error seemed to be related to Thrift and not mpir as mpir was found on your system.
I suspect that either cmake does things 'backward compatible' if it detects and old version of cmake is specified, or the necessary module checks the requested version and doesn't load if it's too old.
After manually installing MPIR and specifying the appropriate paths for cmake, it generates this error:
Solution found at https://github.com/ptrkrysik/multi-rtl/issues/6:: Basically change the required
cmake
version, after whichcmake
succeeds.System information
The text was updated successfully, but these errors were encountered: