当前位置: 技术问答>linux和unix
Gcc编译时出现的问题,很急!!!
来源: 互联网 发布时间:2015-07-25
本文导语: 错误提示是这样的: interface.o(.text+0x18f): In function `create_window': /myproject/proj10/src/interface.c:81: undefined reference to `GTK_TREE' collect2: ld returned 1 exit status 应该是链接不正确吧,GTK_TREE是一个结构体,在gtk/gtktree.h里面定义...
错误提示是这样的:
interface.o(.text+0x18f): In function `create_window':
/myproject/proj10/src/interface.c:81: undefined reference to `GTK_TREE'
collect2: ld returned 1 exit status
应该是链接不正确吧,GTK_TREE是一个结构体,在gtk/gtktree.h里面定义,
包含在gtk/gtk.h里.
makefile 文件中的libs是这样的:
INTLLIBS = -lpthread -lgtk -lgdk
我都这么写了,他还是出现上面的错误!
请大家帮忙了
谢谢 !
interface.o(.text+0x18f): In function `create_window':
/myproject/proj10/src/interface.c:81: undefined reference to `GTK_TREE'
collect2: ld returned 1 exit status
应该是链接不正确吧,GTK_TREE是一个结构体,在gtk/gtktree.h里面定义,
包含在gtk/gtk.h里.
makefile 文件中的libs是这样的:
INTLLIBS = -lpthread -lgtk -lgdk
我都这么写了,他还是出现上面的错误!
请大家帮忙了
谢谢 !
|
up!
|
使用 gtk-config --cflags --libs 命令看一下