BUSYBOX编译错误及解决方法总结

上传人:xuex****hao 文档编号:159764848 上传时间:2022-10-09 格式:DOC 页数:4 大小:27.50KB
收藏 版权申诉 举报 下载
BUSYBOX编译错误及解决方法总结_第1页
第1页 / 共4页
BUSYBOX编译错误及解决方法总结_第2页
第2页 / 共4页
BUSYBOX编译错误及解决方法总结_第3页
第3页 / 共4页
资源描述:

《BUSYBOX编译错误及解决方法总结》由会员分享,可在线阅读,更多相关《BUSYBOX编译错误及解决方法总结(4页珍藏版)》请在装配图网上搜索。

1、编译busybox的组合:busybox-1.0.0 arm-linux-gcc-2.95.3 (AT91rm9200开发板)经典参考: 下载busyboxhttp:/husaberg.toby- 文件系统制作移植基本过程:1. 到2. 解压busybox1.7.3 tar jxvf busybox-1.7.3.tar.bz23. make defconfig4. make menuconfig 在build options中选择Build busybox as a static binary 主要是C库的连接方式,安装目录等。5. make6. 创建rootfs目录7. make insta

2、ll编译过程可能出现以下错误,解决方法如下:可能会出现的错误:1. 出现如下错误 CC miscutils/taskset.omiscutils/taskset.c:17: error: parse error before * tokenmiscutils/taskset.c:18: warning: function declaration isnt a prototypemiscutils/taskset.c: In function _from_cpuset:miscutils/taskset.c:22: error: CPU_SETSIZE undeclared (first use

3、 in this function)miscutils/taskset.c:22: error: (Each undeclared identifier is reported only oncemiscutils/taskset.c:22: error: for each function it appears in.)miscutils/taskset.c:26: warning: implicit declaration of function CPU_ISSETmiscutils/taskset.c:26: error: mask undeclared (first use in th

4、is function)miscutils/taskset.c: In function taskset_main:miscutils/taskset.c:47: error: cpu_set_t undeclared (first use in this function)miscutils/taskset.c:47: error: parse error before maskmiscutils/taskset.c:68: warning: implicit declaration of function CPU_ZEROmiscutils/taskset.c:68: error: new

5、_mask undeclared (first use in this function)miscutils/taskset.c:69: error: CPU_SETSIZE undeclared (first use in this function)miscutils/taskset.c:71: warning: implicit declaration of function CPU_SETmiscutils/taskset.c:78: error: mask undeclared (first use in this function)make1: * miscutils/taskse

6、t.o Error 1make: * miscutils Error 2make menuconfig找到Miscellaneous Utilities,去掉task set2. 如下错误:time.clibbb/time.c:20: error: CLOCK_MONOTONIC undeclared (first use in this function)make menuconfig去掉Busybox Settings-Busybox Library Tuning-Use clock_gettie(CLOCK_MONOTONIC) syscall3.出现如下错误:In file inclu

7、ded from /usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2.95.3/././././arm-linux/sys-include/linux/fs.h:12, from /usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2.95.3/././././arm-linux/sys-include/linux/capability.h:17, from /usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2.95.3/././././arm-linux/sys-include/

8、linux/binfmts.h:5, from /usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2.95.3/././././arm-linux/sys-include/linux/sched.h:9, from /usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2.95.3/././././arm-linux/sys-include/net/inetpeer.h:14, from /usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2.95.3/././././arm-linux

9、/sys-include/net/route.h:28, from /busybox-1.01/networking/route.c:42:/usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2.95.3/././././arm-linux/sys-include/linux/wait.h:4: warning: WNOHANG redefined/usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2.95.3/././././arm-linux/include/bits/waitflags.h:26: warning:t

10、his is the location of the previous definition/usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2.95.3/././././arm-linux/sys-include/linux/wait.h:5: warning: WUNTRACED redefined/usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2.95.3/././././arm-linux/include/bits/waitflags.h:27: warning:this is the location of

11、 the previous definitionIn file included from /usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2.95.3/././././arm-linux/sys-include/linux/sched.h:77, from /usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2.95.3/././././arm-linux/sys-include/net/inetpeer.h:14, from /usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2

12、.95.3/././././arm-linux/sys-include/net/route.h:28, from /busybox-1.01/networking/route.c:42:/usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2.95.3/././././arm-linux/sys-include/linux/time.h:108: warning: FD_SET redefined/usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2.95.3/././././arm-linux/include/sys/se

13、lect.h:83: warning: this is the location of the previous definition/usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2.95.3/././././arm-linux/sys-include/linux/time.h:109: warning: FD_CLR redefined/usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2.95.3/././././arm-linux/include/sys/select.h:84: warning: this i

14、s the location of the previous definition/usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2.95.3/././././arm-linux/sys-include/linux/time.h:110: warning: FD_ISSET redefined/usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2.95.3/././././arm-linux/include/sys/select.h:85: warning: this is the location of the pr

15、evious definition/usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2.95.3/././././arm-linux/sys-include/linux/time.h:111: warning: FD_ZERO redefined/usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2.95.3/././././arm-linux/include/sys/select.h:86: warning: this is the location of the previous definitionIn file

16、included from /busybox-1.01/networking/route.c:42:/usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2.95.3/././././arm-linux/sys-include/net/route.h:34: warning: #warning This file is not supposed to be used outside of kernel.In file included from /usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2.95.3/./././.

17、/arm-linux/include/netdb.h:38, from /busybox-1.01/include/libbb.h:36, from /busybox-1.01/include/busybox.h:54, from /busybox-1.01/networking/route.c:44:/usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2.95.3/././././arm-linux/include/bits/siginfo.h:34: redefinition of union sigval/usr/local/arm/2.95.3/li

18、b/gcc-lib/arm-linux/2.95.3/././././arm-linux/include/bits/siginfo.h:37: warning: redefinition of sigval_t/usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2.95.3/././././arm-linux/sys-include/asm/siginfo.h:11: warning: sigval_t previously declared here/usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2.95.3/./.

19、/././arm-linux/include/bits/siginfo.h:274: redefinition of struct sigevent/usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2.95.3/././././arm-linux/include/bits/siginfo.h:289: warning: redefinition of sigevent_t/usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2.95.3/././././arm-linux/sys-include/asm/siginfo.h

20、:211: warning: sigevent_t previously declared here/usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2.95.3/././././arm-linux/include/bits/siginfo.h:298: parse error before 0In file included from /busybox-1.01/include/busybox.h:54, from /busybox-1.01/networking/route.c:44:/busybox-1.01/include/libbb.h:112:

21、 warning: declaration of flags shadows global declaration/busybox-1.01/include/libbb.h:113: warning: declaration of flags shadows global declaration/busybox-1.01/include/libbb.h:135: warning: declaration of flags shadows global declaration/busybox-1.01/include/libbb.h:251: warning: declaration of fl

22、ags shadows global declaration/busybox-1.01/include/libbb.h:256: redefinition of struct sysinfo/busybox-1.01/include/libbb.h:272: warning: declaration of info shadows global declaration/busybox-1.01/include/libbb.h:309: warning: declaration of flags shadows global declaration/busybox-1.01/include/li

23、bbb.h:440: warning: declaration of flags shadows global declaration/busybox-1.01/networking/route.c:475: warning: declaration of flags shadows global declaration/busybox-1.01/networking/route.c: In function set_flags:/busybox-1.01/networking/route.c:476: warning: declaration of flags shadows global

24、declaration/busybox-1.01/networking/route.c: In function displayroutes:/busybox-1.01/networking/route.c:490: warning: declaration of flags shadows global declarationmake: * /busybox-1.01/networking/route.o Error 1去掉Busybox Settings-NetWork device-route4.如下错误:usr/src/armlinux/busybox-1.0.0/libbb/loop.c:32:linux/version.h:No such file or directory/usr/src/armlinux/busybox-1.0.0/libbb/loop.c:35 arse error/usr/src/armlinux/busybox-1.0.0/libbb/loop.c:37 arse error将内核源码下的include/linux目录下的versition.h文件放到 busybox-1.0.0/include/linux下.

展开阅读全文
温馨提示:
1: 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
2: 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
3.本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
5. 装配图网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
关于我们 - 网站声明 - 网站地图 - 资源地图 - 友情链接 - 网站客服 - 联系我们

copyright@ 2023-2025  zhuangpeitu.com 装配图网版权所有   联系电话:18123376007

备案号:ICP2024067431-1 川公网安备51140202000466号


本站为文档C2C交易模式,即用户上传的文档直接被用户下载,本站只是中间服务平台,本站所有文档下载所得的收益归上传人(含作者)所有。装配图网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。若文档所含内容侵犯了您的版权或隐私,请立即通知装配图网,我们立即给予删除!