Linux系统Eclipse CDT引用动态库(第三方库)的解决方案及问题

1、PFring第三方库的编译和demo运行

PFring为第三方快速抓包库,具体的安装和例子使用方法见:http://blog.csdn.net/xuejiren/article/details/21529027,此地方不再累赘。

2、PFring在新建项目中的使用方案

2.1 编译和安装kernel和libpcap到/usr/local目录下

2.1.1 kernel的安装
 1)进入PF_Ring/kernel目录
 2)./configure --prefix=/usr/local/
 3)make
 4) make install
2.1.2 kernel的安装
 1)进入PF_Ring/userland/libpcap目录
 2)./configure --prefix=/usr/local/
3)make
 4) make install
2.1.3 查看/usr/local/lib和/usr/local/include里面是否有libpcap.a、libpcap.so、libpfring.a等等以及相应的头文件

2.2 新建一个c++ project工程,并配置

2.2.1 新建一个c++ project工程TestPFRing
2.2.2 拷贝alldevs.c里面的源码到TestPFRing.cpp
2.2.3 添加包含目录:右击项目->properties->GCC C++ Compiler->includes
2.2.4 添加第三方库:右击项目->properties->GCC C++ Linker LIbraries->Libraries

2.2.4 添加环境变量:右击项目->Run As->Run Confiturations->Environment 添加环境变量


2.3 存在的问题

问题1:packet direction direction; error: expected specifier-qualifier-list before ‘packet direction’

方案:将/usr/local/include/pf_ring.h用PF_RING/userland/lib/pf_ring.h代替

问题2:undefined reference to `pcap_findalldevs‘

方案:动态库Libraries不仅要指明目录,而且要指明动态库名称,其中将libpcap.so变为pcap加入到Libraries中
                              

问题3:error while loading shared libraries

方案:参见http://blog.csdn.net/dumeifang/article/details/2963223,或者下面的内容

在linux下运行程序时,发现了error while loading shared libraries这种错误,一时间不知道解决办法,在网上搜索,终于解决了:

./tests: error while loading shared libraries: xxx.so.0:cannot open shared object file: No such file or directory
出现这类错误表示,系统不知道xxx.so放在哪个目录下,这时候就要在/etc/ld.so.conf中加入xxx.so所在的目录。

一般而言,有很多的so会存放在/usr/local/lib这个目录底下,去这个目录底下找,果然发现自己所需要的.so文件。

所以,在/etc/ld.so.conf中加入/usr/local/lib这一行,保存之后,再运行:/sbin/ldconfig更新一下配置即可。


Linux系统Eclipse CDT引用动态库(第三方库)的解决方案及问题,古老的榕树,5-wow.com

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。