buildroot编译问题解决

buildroot编译问题解决

2023-11-3 hongxi.zhu

  • FORCE_UNSAFE_CONFIGURE
configure: error: you should not run configure as root (set FORCE_UNSAFE_CONFIGURE=1 in environment to bypass this check) See `config.log’ for more details

解决:
sudo su root
make FORCE_UNSAFE_CONFIGURE=1
  • error: ‘_STAT_VER’ undeclared
error: '_STAT_VER' undeclared (first use in this function)

解决:
1. 下载patch: https://git.busybox.net/buildroot/commit/?id=f45925a951318e9e53bead80b363e004301adc6f
2. 替换package/fakeroot/下的文件
  • missing binary operator before token “(”
 error: missing binary operator before token "("
 
解决:
下载patch: https://git.buildroot.org/buildroot/plain/package/m4/0003-c-stack-stop-using-SIGSTKSZ.patch?id=5a9504831f3fa1ef3be334036c93da30150fde55
下载到buildroot根目录
打到:output/build/host-m4-1.4.18/
patch -d output/build/host-m4-1.4.18 -p1 < 0003-c-stack-stop-using-SIGSTKSZ.patch

你可能感兴趣的:(嵌入式Linux,服务器,linux,buildroot)