我决定通过以下指南编译XU4上的Qt5.8:
http://freecode.hu/sbcomp/2016/08/15/compiling-qt-5-8-on-odroid-xu4/
但在第4步中,我得到一个错误:

make:warning:file '/usr/include/string.h' has modification time 1e+07 s in the future
g++-4.8.real:error:unrecognized argument in option '-mtune=cortex-a15.cortex-a7'
g++-4.8.real:note:valid argumentd to '-mtune=' are: arm1020e ....

请帮助我解决这个错误,
谢谢大家。

最佳答案

一小时后,我通过编辑qmake.config文件解决了问题:
改变这一行,教程说:
QMAKE_CFLAGS+=-mcpu=cortex-a15-mfpu=neon-vfpv4-mtune=cortex-a15.cortex-a7-mfloat abi=硬
对此:
QMAKE_CFLAGS+=-mcpu=cortex-a15-mfpu=neon-vfpv4-mtune=cortex-a15-mtune=cortex-a7-mfloat abi=硬

关于linux - 如何解决此错误:g++:错误:选项'-mtune = cortex-a15.cortex-a7'中无法识别的参数,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41901768/

10-12 17:29