注册 登录
电子工程世界-论坛 返回首页 EEWORLD首页 频道 EE大学堂 下载中心 Datasheet 专题
annysky2012的个人空间 https://home.eeworld.com.cn/space-uid-402938.html [收藏] [复制] [分享] [RSS]
日志

3.【记录】GCC编译器必须安装的两个库文件

已有 658 次阅读2022-10-13 16:02 |个人分类:linux

在使用gcc编译u-boot内核时,总是报错,例如:

scripts/Makefile.host:118: recipe for target 'scripts/basic/fixdep' failed

Makefile:381: recipe for target 'scripts_basic' failed

 

看网上的教程,写的也解决不了问题,后来发现,必须安装两个文件才可以:

ncurses库:sudo apt-get install libncurses5-dev

标准库:sudo apt-get install lsb-core lib32stdc++6

 

按上述命令,安装完成后输入编译u-boot,正常运行。

 

依次输入一下命令,编译Uboot:

make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- distclean

make ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- XXXX

make V=1 ARCH=arm CROSS_COMPILE=arm-linux-gnueabihf- -j12

 

本文来自论坛,点击查看完整帖子内容。

评论 (0 个评论)

facelist doodle 涂鸦板

您需要登录后才可以评论 登录 | 注册

热门文章