我正在尝试使用 GTK4 编译 C GUI 应用程序。我之前在这里被告知Ubuntu 21.04 和 21.10 都将具有 GTK3 和 GTK4。但是,当我安装 Ubuntu 21.04 时,只有 GTK3 存在。然后我进行了 dist-upgrade 到 21.10,发现 GTK 的两个版本都是原生的:
user@user: dpkg -l libgtk* | grep -e '^i' | grep -e 'libgtk-*[0-9]'
ii libgtk-3-0:amd64 3.24.30-1ubuntu1 amd64 GTK graphical user interface library
ii libgtk-3-bin 3.24.30-1ubuntu1 amd64 programs for the GTK graphical user interface library
ii libgtk-3-common 3.24.30-1ubuntu1 all common files for the GTK graphical user interface library
ii libgtk-3-dev:amd64 3.24.30-1ubuntu1 amd64 development files for the GTK library
ii libgtk-3-doc 3.24.30-1ubuntu1 all documentation for the GTK graphical user interface library
ii libgtk-4-1:amd64 4.4.0+ds1-5 amd64 GTK graphical user interface library
ii libgtk-4-bin 4.4.0+ds1-5 amd64 programs for the GTK graphical user interface library
ii libgtk-4-common 4.4.0+ds1-5 all common files for the GTK graphical user interface library
ii libgtk2.0-0:amd64 2.24.33-2ubuntu1 amd64 GTK graphical user interface library - old version
ii libgtk2.0-bin 2.24.33-2ubuntu1 amd64 programs for the GTK graphical user interface library
ii libgtk2.0-common 2.24.33-2ubuntu1 all common files for the GTK graphical user interface library
ii libgtk3-perl 0.038-1 all Perl bindings for the GTK+ graphical user interface library
只需仔细检查 Ubuntu 的版本即可:
user@user: lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 21.10
Release: 21.10
Codename: impish
GTK页面说使用以下代码来编译 GTK4 应用程序pkg-config
:
gcc $( pkg-config --cflags gtk4 ) -o example-0 example-0.c $( pkg-config --libs gtk4 )
这与以前的 GTK 版本非常相似。对于 GTK3,它是:
gcc $( pkg-config --cflags gtk+-3.0 ) -o example-0 example-0.c $( pkg-config --libs gtk+-3.0 )
但是,尝试使用 GTK4 编译程序会导致:
user@user: make
Package gtk4 was not found in the pkg-config search path.
Perhaps you should add the directory containing `gtk4.pc'
to the PKG_CONFIG_PATH environment variable
No package 'gtk4' found
所以然后基于here我跑了:
user@user: pkg-config --variable pc_path pkg-config
/usr/local/lib/x86_64-linux-gnu/pkgconfig:/usr/local/lib/pkgconfig:/usr/local/share/pkgconfig:/usr/lib/x86_64-linux-gnu/pkgconfig:/usr/lib/pkgconfig:/usr/share/pkgconfig
搜索所有这些路径,我只找到与 GTK 相关的 .pc 文件,/usr/lib/x86_64-linux-gnu/pkgconfig
我没有找到任何与 GTK4 相关的内容。我确实在gtk+-3.0.pc
那里找到。所以我的问题是,如果 GTK4 是 Ubuntu 21.10 原生的,为什么会丢失 pkg-config 文件?我从哪里获得它们以便我可以使用 pkg-config 进行编译?
旁白:我没有足够的声誉来创建gtk4
标签。有足够声誉的人可以这样做吗?
您将需要安装
libgtk-4-dev
,使用命令