我想LxQt
从Ubuntu xenial
衍生系统的来源进行构建。我按照描述的顺序进行操作https://github.com/lxde/lxqt/wiki/Building-from-source编译libqtxdg
并安装良好,但第二部分lxqt-build-tools
无法通过 cmake 运行。我已经安装了所有列出的 Ubuntu 先决条件,但我得到了上述软件包的以下内容:
$ cmake ../
-- The C compiler identification is GNU 5.4.0
-- The CXX compiler identification is GNU 5.4.0
-- Check for working C compiler: /usr/bin/cc
-- Check for working C compiler: /usr/bin/cc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Detecting C compile features
-- Detecting C compile features - done
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Found PkgConfig: /usr/bin/pkg-config (found version "0.29.1")
-- Checking for module 'glib-2.0>=2.50'
--
CMake Error at /usr/share/cmake-3.5/Modules/FindPkgConfig.cmake:367 (message):
A required package was not found
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/FindPkgConfig.cmake:532 (_pkg_check_modules_internal)
CMakeLists.txt:17 (pkg_check_modules)
-- Configuring incomplete, errors occurred!
See also "/home/ron/src/lxqt/lxqt-build-tools/build/CMakeFiles/CMakeOutput.log".
ron@ron-notebook:~/src/lxqt/lxqt-build-tools/build$
我不知道出了什么问题。列出的日志文件也没有提供太多信息......我该如何克服这个问题?
答案1
简短回答:需要libglib2.0-dev
2.5以上版本的软件包才能运行。
长答案(另请参阅原帖的评论):
glib-2.0
是引用包pkgconfig
和其他工具的名称。glib-2.0
并不一定意味着版本号是2.0
.由于您是从源代码编译的。您真正需要的libglib2.0-dev
版本很可能不低于2.5
.dev
这里的意思是“开发”,你可以将其解释为“如果你想自己构建一些东西,你将需要这个”。你需要一个开发包来进行编译。将来从源代码编译时请记住这一点。这会节省您的时间。