根据 GCC,已安装的标头不存在

根据 GCC,已安装的标头不存在

我想编译派克使用 GTK 库。为此,我需要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它们?

答案1

你还没有告诉 g++在哪里找到它们:默认情况下,它只在顶级/usr/include目录中查找,而您尝试包含的标题位于gtk-2.0子目录中。

您可以手动添加包含路径,例如

gcc -I /usr/include/gtk-2.0 test.c

或者(推荐的方式)pkg-config直接从包提供的.pc文件中提取所需的路径和标志

gcc `pkg-config --cflags gtk+-2.0` test.c

如果你实际使用了包含库中的任何符号,则可能需要对链接器路径执行相同的操作,例如

gcc test.c `pkg-config --cflags --libs gtk+-2.0` 

例如在 UNIX 上编译 GTK+ 应用程序来自GNOME 开发者中心

相关内容