我知道你在想什么 - 已经回答了一百万次。我希望我能在标题中加入一些内容,以便清楚地表明我已经知道库的顺序很重要。
我在Centos 6 64上使用g ++。我有一个简单的测试程序:
#include <ptlib.h>
int main()
{
PTimer indirectTimer1_;
indirectTimer1_.SetNotifier(0);
return 0;
}
我用这个命令编译并链接它:
g++ -I./ptlib/include/ mm.cpp ptlib/lib_linux_x86_64/libpt_s.a -lpthread -lrt
我将此作为回答:
/tmp/cc53itXb.o: In function `main':
mm.cpp:(.text+0x52): undefined reference to `PTimer::SetNotifier(PNotifierTemplate<int> const&)'
collect2: ld returned 1 exit status
但我知道PTimer :: SetNotifier位于.a文件中:
nm -AC ptlib/lib_linux_x86_64/libpt_s.a | grep SetNotifier
ptlib/lib_linux_x86_64/libpt_s.a:osutil.o:0000000000003dd8 T PTimer::SetNotifier(PNotifierTemplate<long> const&)
为了让事情更加混乱,当我在Centos 5,32bit上编译库并运行相同的测试时,它链接就好了。
我已尝试使用&#39; -Lptlib / lib_linux_x86_64 -lpt_s&#39;我尝试使用-Wl, - start-group / -Wl, - end-group args无济于事。如果我添加&#39; ptlib / src / ptlib / unix / osutil.cxx&#39;到g ++系列,它编译和链接就好了。不幸的是,这只是我们主程序中未引用函数的一个示例。并非所有的,只是一些看似随机的方法,如这一个是未定义的(这也很好地连接Centos 5,32位)。
正如你所看到的,我已经尝试了很多东西,但仍然没有想到它。我需要别的东西来试试!或者有人指出我做错的事情非常容易。
答案 0 :(得分:4)
undefined reference to `PTimer::SetNotifier(PNotifierTemplate<int> const&)'
PTimer::SetNotifier(PNotifierTemplate<long> const&)
请注意int
与long
的差异?