出现的问题一:
编译工具存在和环境变量都设置好的情况下,执行arm-linux-gcc -v任然提示“没有这样的文件或目录”,这是因为安装64位Linux系统,所以必须先安装lsb-core,apt-get install lsb-core,
问题二:
做完以上内容后执行arm-linux-gcc -v 如果没有正常显示版本信息,提示libstdc++.so.6:cnanot open share object,还缺少32的库,安装32位库,apt-get install lib32stdc++6 ,apt-get install lib32zl。
问题三:make menuconfig出错,缺少库
apt-get install libncurses-dev
问题四:
编译内核出错mkimage command not found U-Bootimages will not be buil
apt-get install u-boot-tools 解决