天天看點

交叉編譯libpcap

1、從http://www.tcpdump.org/#latest-release下載下傳最新的源碼包libpcap-1.6.2.tar.gz

2、vi vi configure 注釋掉以下這幾行:

5226 #modified by whl 2014-10-18

5227 #if test -z "$with_pcap" && test "$cross_compiling" = yes; then

5228 #   as_fn_error $? "pcap type not determined when cross-compiling; use --with-pcap=..." "$LINENO" 5

5229 #fi

5230

5231 # Check whether --with-pcap was given.

5232 #if test "${with_pcap+set}" = set; then :

5233 #  withval=$with_pcap;

5234 #fi

3、 ./configure --host=arm-linux

4、修改Makefile

      prefix = /usr/local/arm/4.2.2-eabi/usr/bin

5、make

6、切換到root使用者下執行 make install

執行完畢後在目錄/usr/local/arm/4.2.2-eabi/usr/bin下面多了bin、include、lib三個目錄

繼續閱讀