编译linkit smart 7688 u-boot时遇到的问题: make: /opt/buildroot-gcc342/bin/mipsel-linux-gcc: Command not found

 这里我用的系统是:Ubuntu 14.04.3 LTS

如果遇到类似  make: /opt/buildroot-gcc342/bin/mipsel-linux-gcc: Command not found 这样的问题

由于是64位系统,所以需要额外安装一些东西来执行32位应用程序:

sudo dpkg --add-architecture i386

sudo apt-get update

sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386

然后就可以啦。


顺便说一下,如果用Ubuntu20的话,应该是可以编译成功的,但是最后会报错,错误如下:


到现在还没有解决。。。


(参考:https://github.com/MediaTek-Labs/linkit-smart-7688-uboot/issues/1#issuecomment-185501504




Comments