$(CC) -Wall `pkg-config --cflags gtk+-2.0` -c gthread.c -o test.o
$(CC) -Wall `pkg-config --libs gtk+-2.0`
$./test.o
./test.o(.text+0x2b): In function `main':
: undefined reference to `g_thread_init'
collect2: ld returned 1 exit status
make: *** [test] 错误 1
解决:g_thread_init 在 gthread-2.0 库中,在 pkg-config 中除了 gtk+-2.0 之外还需要加上 gthread-2.0 一项。
阅读(2056) | 评论(0) | 转发(1) |