嵌入式Linux上移植unzip工具

耗尽温柔 提交于 2020-03-03 18:55:06

由于busybox编译出来的unzip不支持有密码的压缩包解压,因此基于unzip60源码包,交叉编译一个嵌入式Linux上的unzip工具。

1.下载地址是:

https://sourceforge.net/projects/infozip/

2.配置

修改unzip60/unix/Makefile:

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

3.编译:

1 make generic -f unix/Makefile 

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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!