所有。我下载了一个简单的GTK +源代码:
#include <gtk/gtk.h>
int main( int argc, char *argv[])
{
GtkWidget *window;
gtk_init(&argc, &argv);
window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
gtk_widget_show(window);
gtk_main();
return 0;
}
当我运行它时,
gcc -o simple simple.c `pkg-config --libs --cflags gtk+-2.0`
-bash: pkg-config: command not found
simple.c:1:21: error: gtk/gtk.h: No such file or directory
simple.c: In function ‘main’:
simple.c:5: error: ‘GtkWidget’ undeclared (first use in this function)
simple.c:5: error: (Each undeclared identifier is reported only once
simple.c:5: error: for each function it appears in.)
simple.c:5: error: ‘window’ undeclared (first use in this function)
simple.c:9: error: ‘GTK_WINDOW_TOPLEVEL’ undeclared (first use in this function)
它告诉我缺少gtk.h。但是我如何获得gtk.h?我该如何让程序运行?谢谢。
答案 0 :(得分:2)
您需要标题并包含GTK库。大多数发行版都发布它们。例如,在Debian系统上,它们可以作为包libgtk2.0-dev
使用,所以
apt-get install libgtk2.0-dev
应该这样做。
答案 1 :(得分:2)
安装pkg-config
以便使用它,例如。在Debian上:apt-get install pkg-config