赞
踩
参照在树莓派上的安装教程:https://blog.csdn.net/Changer_sun/article/details/78630464,树莓派上的CPU为ARM系列(RPi 3B+为A53),TX2的CPU也同为ARM系列(A57),两者的交叉编译方式可以通用。
参照上面的教程,此处略过。
进入下载的libpcap-1.0.0文件夹,配置configure文件,make进行编译:
./configure --build=arm-linux --host=arm-linux --target=arm-linux
进入下载的mentohust-0.3.1文件夹,配置configure文件,make进行编译 :
./configure --build=arm-linux --host=arm-linux --target=arm-linux --disable-encodepass --disable-arp --disable-notify --disable-nls --with-pcap=/home/vslyu/mentohust_arm/libpcap-1.0.0/libpcap.a
make完成后进入mentohust-0.3.1/src/进行安装:
sudo make install
--build=arm-linux --host=arm-linux --target=arm-linux 这一行参数--build指定了编译的平台为arm-linux,--host指定运行的目标计算机也为arm-linux,--target一般不会用到,缺省默认为-host指定的参数。
参数详细含义见https://blog.csdn.net/commshare/article/details/16358497
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。