编译出错信息如下:
[ 82%] Linking CXX executable ../bin/dsys
/usr/bin/ld: ../lib/libdnet.so: undefined reference to `typeinfo for dnet::event_handler'
collect2: error: ld returned 1 exit status
make[2]: *** [dsys/CMakeFiles/dsys.dir/build.make:119: bin/dsys] Error 1
make[1]: *** [CMakeFiles/Makefile2:783: dsys/CMakeFiles/dsys.dir/all] Error 2
make: *** [Makefile:146: all] Error 2
看了些网上的原因与说法,总结下来就是因为event_handler类中声明了某个成员函数,但没有定义实现它。
解决方案:知道原因,解决就简单了,找到这个函数,加个函数体实现就可以了。
标签:typeinfo,undefined,reference,handler,CMakeFiles,dsys,event From: https://www.cnblogs.com/colin-vio/p/17247022.html