其他分享
首页 > 其他分享> > 嵌入式板子tftpd交叉编译及使用

嵌入式板子tftpd交叉编译及使用

作者:互联网

1.下载ftfp

tftp-hpa源码下载地址:https://mirrors.edge.kernel.org/pub/software/network/tftp/

我们选用的是0.4的版本

wget https://mirrors.edge.kernel.org/pub/software/network/tftp/tftp-hpa-0.40.tar.gz
tar xvf tftp-hpa-0.40.tar.gz
cd tftp-hpa-0.40.tar.gz

 

 2.交叉编译

mkdir build
./configure --host=arm-none-linux-gnueabi --prefix=/root/projects/tftp2/tftp-hpa-0.40/build/

 

 

 

CC = gcc 改为
CC = arm-linux-gnueabihf-gcc

 

 

 

make 

 

 

 

至此.编译完成

 

感谢 https://www.cnblogs.com/live-program/p/11599087.html

 

标签:https,tar,板子,编译,嵌入式,tftp,tftpd,hpa,0.40
来源: https://www.cnblogs.com/cqwo/p/14963589.html