使用的编译器是arm-none-linux-gnueabi-
201405版本的
在开始.configure的时候 ,qt提示
ERROR: Qt requires a C++11 compiler and yours does not seem to be that.
搜索了一番可能的错误,没有找到原因。最后检查了一遍编译环境,
原来是因为没有把交叉编译器放到环境变量导致的。
解决方法就是
export PATH=$PATH:/path/to/arm-none-linux-gcc/bin
添加到环境变量。
网友评论