参考当前官网上的 Windows 安装 GTK 教程(Setting up GTK for Windows)及编译教程 Gtk – 4.0: Compiling GTK Applications on UNIX,在 MSYS2 上安装 GTK 4 并使用的方法是执行:
pacman -S mingw-w64-x86_64-gtk4
pacman -S mingw-w64-x86_64-glade
pacman -S mingw-w64-x86_64-python3-gobject
pacman -S mingw-w64-x86_64-toolchain base-devel
pkg-config --cflags gtk4
pkg-config --libs gtk4
cc `pkg-config --cflags gtk4` hello.c -o hello `pkg-config --libs gtk4`
在 pkg-config 时遇到错误:
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
原因一:
当前官网上的 Windows 安装 GTK 教程(Setting up GTK for Windows)过时,教程的命令为:
pacman -S mingw-w64-x86_64-gtk3
安装的是 GTK 3,实际上应该用以下命令安装 GTK 4:
pacman -S mingw-w64-x86_64-gtk4
参考:windows - Package gtk4 was not found in the pkg-config search path - Stack Overflow
原因二:
经 Msys2 in windows 10 with GTK return error pkg-config - Stack Overflow 提示,应在 MSYS 的 MinGW-w64 中执行 pkg-config: