Qt5.1-android: Qt version for mips is missing in QtCreator

I installed Qt-5.1.0-rc1-android on linux and added all available Qt versions on the Build & Run tab in QtCreator (these are android_armv7 , android_x86 and gcc_64 ).

But the Creator tells me Qt version for architecture mips is missing, to add the Qt version, select Options > Build & Run > Qt Versions. .

Is there some kind of addiction that I don't know about?

+7
source share
2 answers

Prefer to configure Android NDK in the Android settings category, after which the necessary sets will be added automatically. But I'm not sure that Qt 5.1.0 for Android also contains mips images. If this is not the case, you must manually create Qt for the mips.

+1
source

Due to the lack of MIPS support in the JavaScript engine used in QtQuick 2, there is no binary package for this architecture.

If your application does not require Qt Quick 2, you can manually create Qt for MIPS. If you need Qt Quick 2 for MIPS, unfortunately, the only solution at the moment is to create a dev from the repository (which is under active development and not stable) or is waiting for Qt 5.2, where this problem should be fixed.

If your application does not require MIPS support, you can safely ignore the warning in Qt Creator.

+1
source

All Articles