1

我有一个程序使用这里找到的 libexif C 库http://libexif.sourceforge.net/

我安装了库,它位于 /usr/include/libexif

我将这些包含在程序的顶部

#include <libexif/exif-data.h>
#include <libexif/exif-content.h>
#include <libexif/exif-entry.h>

我的编译语句:

`gcc -o test test.c` 

当我编译我得到这些错误

/tmp/ccUUWpcw.o: In function `show_tag':
test.c:(.text+0x91): undefined reference to `exif_content_get_entry'
test.c:(.text+0xc0): undefined reference to `exif_entry_get_value'
test.c:(.text+0xef): undefined reference to `exif_tag_get_name_in_ifd'
/tmp/ccUUWpcw.o: In function `main':
test.c:(.text+0x179): undefined reference to `exif_data_new_from_file'
test.c:(.text+0x1cd): undefined reference to `exif_data_unref'
collect2: ld returned 1 exit status

该程序认为可以很好地读取包含的文件,但由于某种原因不知道这些功能。我安装库时所做的只是解压缩它,./configure, make && make install

我需要在其他地方引用这个库或类似的东西吗?

谢谢你的帮助!

4

1 回答 1

5

是的,您需要链接库:

gcc test.c -o test -lexif
于 2012-11-26T21:56:38.677 回答