嵌入式板子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

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

 

 2.交叉编译

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

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

 

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

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

 

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

 

 

make 

 

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

 

 

至此.编译完成

 

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

 

上一篇:腾讯五十题 No.14 搜索旋转排序数组


下一篇:Kubernetes Pod水平自动伸缩(HPA)