When will be released Qt 5 version for Embedded linux ?
-
wrote on 23 Dec 2012, 08:15 last edited by
When will be released Qt 5 version for Embedded linux ?
-
wrote on 23 Dec 2012, 11:19 last edited by
Same day as all the other platforms. :)
Due to the wide variety of custom Linux systems it is not feasible to release pre-built packages for all of them. Just download the source and build it with the correct options for your platform. You probably want to use either the wayland or eglfs qpa plugins.
Have fun!
-
wrote on 23 Dec 2012, 11:24 last edited by
Thanks !
What about windows version with minGW ?
-
wrote on 23 Dec 2012, 11:44 last edited by
Hopefully windows/mingw build will be included in 5.0.1 sometime around late January I believe.
-
wrote on 23 Dec 2012, 11:50 last edited by
Thanks again !
-
wrote on 27 Dec 2012, 06:19 last edited by
Dear ZapB,
Thank you for helpful info. Do we have a build guide for QT5 for Embedded Linux? I need implement an QT5 application on a board using arm chip.
We've built QT5 and been stuck in web-kit issues. In fact we don't want to include web-kit but don't know how to remove it.
I don't know much about the wayland or eglfs qpa plugins that you mentioned. Can you clarify a little?
-
wrote on 27 Dec 2012, 06:42 last edited by
Have you tried
@./configure ... -nomake webkit@
? -
In Qt5, to remove webkit, simply rename or remove qtwebkit folder.
-
wrote on 27 Dec 2012, 10:08 last edited by
To be honest if you are building from source for a custom platform where you may need to tweak things then I would just build Qt5 from a git clone rather than from the released source packages. The reason is that it is much much easier to manage your patches and to revert to a clean source checkout if needed.
It is also much easier to control exactly which modules you wish to include. Don't want webkit? Easy, just don't cd into qtwebkit and execute qmake && make && make install.
With this in mind take a look at these instructions and customise to suit your particular platform http://qt-project.org/wiki/Building_Qt_5_from_Git
Just be careful to checkout the release branch and tag for Qt 5.0.0 - unless of course you wish to get more recent fixes, in which case use the stable branch.
Hope this helps.
1/9