我正在尝试使用Libelf库来获取一些elf文件的信息。但我一直得到这些“未定义的引用[...]”。我从synaptic安装了libelf(也试图从网站上获取),并且lib似乎没有问题。
我的代码:
#include <err.h>
#include <fcntl.h>
#include <sysexits.h>
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <libelf.h>
int main(int argc, char * argv[]) {
Elf *elf_file;
Elf_Kind elf_kind_file;
int file_descriptor;
if((argc!=2))
printf("Argumento em formato nao esperado\n");
file_descriptor = open(argv[1], O_RDONLY, 0);
elf_file = elf_begin(file_descriptor, ELF_C_READ, NULL);
elf_kind_file = elf_kind(elf_file);
elf_end(elf_file);
close(file_descriptor);
return 0;
}
以下是我从终端获得的信息(目前正在使用Ubuntu 11.4):
gcc sample.c -o sample
/tmp/ccP7v2DT.o: In function `main':
sample.c:(.text+0x57): undefined reference to `elf_begin'
sample.c:(.text+0x67): undefined reference to `elf_kind'
sample.c:(.text+0x77): undefined reference to `elf_end'
collect2: ld returned 1 exit status
更新
解决了在编译期间将-lelf放在我的文件之前的所有问题。最后一个我只能解决将我的libelf更新为新版本(在Synaptic Manager上不可用):
wget http://ftp.br.debian.org/debian/pool/main/e/elfutils/libelf-dev_0.153-1_i386.deb
wget http://ftp.br.debian.org/debian/pool/main/e/elfutils/libelf1_0.153-1_i386.deb
sudo dpkg -i libelf-dev_0.153-1_i386.deb libelf1_0.153-1_i386.deb
答案 0 :(得分:3)
您可能需要链接到库。执行此操作的标准方法是:
gcc sample.c -l elf -o sample
这将在标准库目录中搜索libelf.a,并将该存档中的相关目标文件包含到构建中。假设已正确安装库,则应存在libelf.a或类似命名的文件。