我想用 GTK 库编译Pike 。为此,我需要gtk
安装标头。
$ tee test.cpp test.c
#include<gtk/gtk.h>
#include<gtk/gtk.h>
$ g++ test.cpp; gcc test.c
test.cpp:1:21: fatal error: gtk/gtk.h: No such file or directory
compilation terminated.
test.c:1:21: fatal error: gtk/gtk.h: No such file or directory
compilation terminated.
我环顾四周,找到要安装的软件包。
$ apt install libgtk-3-dev libgtk2.0-dev
Reading package lists... Done
Building dependency tree
Reading state information... Done
libgtk2.0-dev is already the newest version.
libgtk-3-dev is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
好的...
$ sudo ls -Ral /usr/include/ | grep gtk
<617 lines of proof snipped...>
$ !! | wc -l
617
???
$ sudo find /usr/include -name "*gtk*" | wc -l
567
标题在那里;我知道他们是。为什么gcc
找不到他们?
您还没有告诉 g++在哪里可以找到它们:默认情况下,它只在顶级
/usr/include
目录中查找,而您尝试包含的标题位于gtk-2.0
子目录中。您可以手动添加包含路径,例如
或(推荐的方式)用于
pkg-config
直接从包提供的.pc
文件中提取所需的路径和标志如果您实际使用包含库中的任何符号,您可能需要对链接器路径执行相同操作,例如
例如,参见GNOME 开发人员中心的Compiling GTK+ Applications on UNIX