我正在尝试使用 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
那么基于这里我跑了:
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
。有足够声誉的人可以这样做吗?
答案1
您需要libgtk-4-dev
使用以下命令进行安装
sudo apt install libgtk-4-dev