我想在Linux上的Clion项目中使用pcap。我安装了libpcap-dev:
sudo apt-get install libpcap-dev
但是我试着编译任何文件,包含pcap函数,比如:
#include <stdio.h>
#include <pcap.h>
int main(int argc, char *argv[])
{
char *dev, errbuf[PCAP_ERRBUF_SIZE];
dev = pcap_lookupdev(errbuf);
if (dev == NULL) {
fprintf(stderr, "Couldn't find default device: %s\n", errbuf);
return(2);
}
printf("Device: %s\n", dev);
return(0);
}
我会犯错误:
CMakeFiles/main.cpp.o: In function `main':
/main.cpp:8: undefined reference to `pcap_lookupdev'
我以前没有使用过cmake。Cmake文件:
cmake_minimum_required(VERSION 3.7)
project(mypr)
set(CMAKE_CXX_STANDARD 11)
set(SOURCE_FILES main.cpp)
add_executable(mypr ${SOURCE_FILES})
3条答案
按热度按时间798qvoo81#
您应该在CMakeLists.txt中包含并使用FindPCAP.cmake文件。以下是一个文件:https://github.com/bro/cmake/blob/master/FindPCAP.cmake
将FindPCAP.cmake放在项目的源目录中,并尝试将CMakeLists.txt更改为:
bprjcwpo2#
我认为您也可以使用
CMAKE_MODULE_PATH
(假设FindPCAP.cmake
位于项目的源目录中):a8jjtwal3#
当 我 试图 遵从 ros catkin _ make 的 libpcap 时 , 我 遇到 过 类似 的 问题
中 的 每 一 个
at last, I added the absolute path to "libpcap.so" by link_libraries() in CMakeLists.txt,like the below
格式