欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

交叉编译BusyBox 构建根文件系统出错fatal error: gnu/stubs-soft.h: No such file or directory

程序员文章站 2022-07-15 16:51:14
...

1.BusyBox官网下载源码:Busybox源码

2.在NFS服务器目录新建rootfs:

mkdir /home/NFS/rootfs

3.进入源码顶层目录,修改以下:

CROSS_COMPILE ?=/opt/poky/1.7/sysroots/x86_64-pokysdk-linux/usr/bin/arm-poky-linux-gnueabi/arm-poky-linux-gnueabi-
ARCH ?= arm
CC=arm-poky-linux-gnueabi-gcc -march=armv7-a -mthumb-interwork -mfloat-abi=hard -mfpu=neon -mtune=cortex-a9 --sysroot=/opt/poky/1.7/sysroots/cortexa9hf-vfp-neon-poky-linux-gnueabi

假如不修改CC会出现如下错误:

交叉编译BusyBox 构建根文件系统出错fatal error: gnu/stubs-soft.h: No such file or directory
交叉编译BusyBox 构建根文件系统出错fatal error: gnu/stubs-soft.h: No such file or directory
如果使用的工具链是arm-linux-gnueabihf-gcc是不用修改CC的,也不会出现fatal error: gnu/stubs-soft.h: No such file or directory错误。

4.配置busybox

make defconfig

5.图形化配置,根据所需进行配置

make menuconfig

6.编译busybox,并指定安装路径

make install CONFIG_PREFIX=/home/vmuser/NFS/rootfs

终端显示:
交叉编译BusyBox 构建根文件系统出错fatal error: gnu/stubs-soft.h: No such file or directory
rootfs目录中有bin、linuxrc、sbin、usr

算是构建出了基本的根文件系统,之后还需要进行完善。