2

在 CentOS 6.5 上安装 justniffer 时,

./configure

工作正常,但make给出以下错误:

libtool: link: g++ -g -O2 -o justniffer justniffer-main.o justniffer-formatter.o justniffer-utilities.o justniffer-regex.o justniffer-prog_read_file.o /usr/local/lib  -L/root/justniffer/lib/libnids-1.21_patched/src -lnids2 -lpcap -L/usr/local/lib -lboost_regex-mt -lboost_program_options -lpython2.6
/usr/local/lib: file not recognized: Is a directory
collect2: ld returned 1 exit status
make[1]: *** [justniffer] Error 1
make[1]: Leaving directory `/root/justniffer/src'
make: *** [all-recursive] Error 1

解决方案是什么?

4

3 回答 3

1

使用./configure LIBS="-I /usr/local/include -L/usr/local/lib",然后make,它的工作!

于 2015-05-06T04:18:16.617 回答
0

这么久没有编译程序,犯了同样的愚蠢错误:

  • Like CFLAGS, LIBS, GTK_LIBSetc 应该是标志,例如-Lpath,不是裸路径。我以前做的是将所有 DIR 重新定位到 CFLAGS=/I/L 另一种方法
  • 空格应该被引用或转义,如LIBS="-L'c/program files/gtk+/lib'" LIBS="-Lc/program\ files/gtk+/lib"
于 2017-06-04T05:00:49.717 回答
-1

vi Makefile 和 src/Makefile

LIBS = -pthread -lm -lz -ldl -lutil

制作并安装

成功!

于 2015-07-29T08:45:41.180 回答