尝试安装gr-osmosdr时CMake错误

时间:2020-10-11 17:33:46

标签: cmake gnuradio

我已经尝试安装gr-osmosdr了一段时间,但是我没有结束安装过程。我已按照https://github.com/osmocom/gr-osmosdr上的步骤进行操作 展示了如何通过cmake安装gr-osmosdr。克隆并构建“ build”目录后,是时候让cmake做好工作了。正是在这一步,事情开始失败。我收到以下错误:

CMake Warning (dev) at /home/victor/.local/lib/python2.7/site-packages/cmake/data/share/cmake-3.18/Modules/GNUInstallDirs.cmake:225 (message):
  Unable to determine default CMAKE_INSTALL_LIBDIR directory because no
  target architecture is known.  Please enable at least one language before
  including GNUInstallDirs.
Call Stack (most recent call first):
  CMakeLists.txt:24 (include)
This warning is for project developers.  Use -Wno-dev to suppress it.

-- The CXX compiler identification is GNU 5.4.0
-- The C compiler identification is GNU 5.4.0
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++ - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/cc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Build type not specified: defaulting to release.
CMake Error at CMakeLists.txt:44 (find_package):
  Could not find a configuration file for package "Gnuradio" that is
  compatible with requested version "3.8".

  The following configuration files were considered but not accepted:

    /usr/lib/x86_64-linux-gnu/cmake/gnuradio/GnuradioConfig.cmake, version: 3.7.9.1


-- Configuring incomplete, errors occurred!
See also "/home/victor/gr-osmosdr/build/CMakeFiles/CMakeOutput.log".

目前,我无法继续安装过程。我正在运行 Ubuntu 16.04.7 LTS GNU Radio 3.7.9。 谢谢

1 个答案:

答案 0 :(得分:1)

该错误消息具有很强的描述性:您正在尝试使用古代 GNU Radio 3.7.9.1。构建与GNU Radio 3.8兼容的现代gr-osmosdr。不行您可以尝试构建gr-osmosdr的过时版本,但实际上,您应该升级到Ubuntu 20.04。

在那里,你可以

sudo apt install gnuradio gr-osmosdr

也不必自己构建任何东西(它就可以工作!)。