unzip交叉编译

嵌入式Linux上移植unzip工具

前言:本人开发的网关需要解压从云端下发的zip压缩文件。由于某台ARM自带的busybox版本过低,解压失败。

因此基于unzip60源码包,交叉编译一个嵌入式Linux上的unzip工具。

下载地址

http://sourceforge.net/projects/infozip/files/UnZip%206.x%20%28latest%29/UnZip%206.0/unzip60.tar.gz/download

配置

修改unzip60/unix/Makefile:


CC =arm-linux-gcc #try using "gcc" target rather than changing this (CC and LD
AS = arm-linux-as


编译

进入unzip60目录下,执行命令

make generic -f unix/Makefile 

移植

主目录下生成的unzip即是目标文件。

将其复制到ARM中,并设置为默认的unzip执行文件。

你可能感兴趣的:(arm交叉编译,arm开发,linux,交叉编译)