Trying to compile QtWebEngine on MIPS (Qt 5.4)
-
Hello,
I'm trying to compile QtWebEngine on MIPS (BCM97429b0) using the Qt 5.4 everywhere pakage, but I get the following warning:
Project WARNING: Qt WebEngine can currently only be built for Linux (GCC), Windows (MSVC 2013), OS X (XCode 5.1+) or Qt for Device Creation.
Project WARNING: QtWebEngine is not maintained for this platform/configuration and is therefore disabledIs QtWebEngine supported for MIPS processors?
Is possible to compile QtWebEngine using the Qt licensed version?Thanks.
-
Finally, I skipped the restrictions mofidying the file qtwebengine/tools/qmake/mkspecs/features/functions.prf:
Before:
skipBuild("Qt WebEngine can currently only be built for Linux (GCC), Windows (MSVC 2013), OS X (XCode 5.1+) or Qt for Device Creation.")
return(false)After:
#skipBuild("Qt WebEngine can currently only be built for Linux (GCC), Windows (MSVC 2013), OS X (XCode 5.1+) or Qt for Device Creation.")
return(true)