오류: pcap 라이브러리를 찾을 수 없습니다

오류: pcap 라이브러리를 찾을 수 없습니다

내 우분투 18.04에 리버를 설치하려고 했는데 그 메시지를 받았어요

checking for gcc... gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ISO C89... none needed checking for pcap_open_live in -lpcap... no error: pcap library not found!

하지만 난 이미 libpcap0.8과 libpcap0.8-dev를 설치했어요

답변1

configure일반적으로 에서 발생한 정확한 오류가 포함된 로그 파일을 생성합니다 gcc. 어떤 오류가 있었는지 조사해야 합니다.

스크립트 를 열어서 configure정확히 무엇이 잘못되었는지 확인할 수도 있습니다. 스크립트에는 pcap이를 컴파일하는 데 사용되는 명령줄과 사용하는 테스트 프로그램이 포함됩니다. 거기에서 테스트 프로그램을 복사하고 동일한 명령줄을 사용하여 수동으로 컴파일을 시도할 수 있습니다.

이러한 오류의 원인은 누락되었거나 잘못 구성되었기 때문일 수 있습니다.pkg-config

답변2

libpcap-devel 설치가 필요합니다

관련 정보