链接netpbm库时出现问题

时间:2011-05-19 09:33:44

标签: c++ linux linker

嗨stackoverflow社区现在我的第一个问题是你的一部分。 我的问题很简单: 我想在c ++程序中使用netpbm库,但无法链接。

g++ test.cpp -o test -lnetpbm
/tmp/ccZsqYHK.o: In function `main':
test.cpp:(.text+0x39): undefined reference to ppm_readppm(_IO_FILE*, int*, int*, unsigned int*)
collect2: ld returned 1 exit status

正如您所看到的,我已经链接了netpbm,但错误并没有消失。 我已经搜索谷歌几个小时但没有查询进入。 似乎没有人有这个问题。

非常感谢任何帮助

1 个答案:

答案 0 :(得分:6)

ppm.h不是c ++友好的。尝试将其包括如下:

extern "C" {
#include <ppm.h>
}