Building Qt for QNX Neutrino OS: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
[[Category:QNX]]


= Building Qt for QNX Neutrino OS =
== Setting up the environment ==
After installing the [[QNX_Platform|required software]] you need to source the qnx environment script:
<code>source &lt;SDP_DIRECTORY&amp;gt;/qqnx660-env.sh<code>
== Get the sources ==
There are two ways how to get a copy of the Qt's source code:<br /># Download an archive of a released version (see the folder &lt;&lt;release-nr&amp;gt;/single&amp;gt; &quot;this link&amp;quot;:http://download.qt.io/official_releases/qt/ for open source releases or check your Qt Account to copy a commercial release, if you have Qt Enterprise license for QNX)<br /># Clone Qt git repository and<br />## use the master repository to build and all required submodules in one run<br />## build and install QtBase and then build submodules one by one as separate projects
The first way is a good choice if you just like to use a last released version of the source code. If you like to get any changes before an official release, you have to clone the source code from git.
All Qt Essential modules (excluding QtWebKit) and some of the add-on modules are supported on QNX (for a complete list, [[Qt_Status_on_QNX|visit this page]]). In the below build process, every module should be cloned individually. Make sure that you clone/build/use only the modules which are known to work on QNX.
This procedure building separate modules one by one is different to standard one where one master repository is used, but provides a better overview what is build and installed.
Clone the following submodule repositories in a new folder:
</code>git clone git://gitorious.org/qt/qtbase.git<br />git clone git://gitorious.org/qt/qtxmlpatterns.git<br />git clone git://gitorious.org/qt/qtdeclarative.git<br />git clone git://gitorious.org/qt/qtmultimedia.git<br />git clone git://gitorious.org/qt/qtgraphicaleffects.git<br />git clone git://gitorious.org/qt/qtquickcontrols.git<br />git clone git://gitorious.org/qt/qtsvg.git<br />git clone git://gitorious.org/qt/qtimageformats.git<br /><code>
Note: the above list corresponds to the list of modules supported on QNX. A few additional git submodules are used in regular builds to support the Qt toolchain and localizations process: qtscript, qttranslations, qttools, qtdoc
The alternative way with cloning the source code from the Qt's master repository for a build for QNX is the same as documented in the [[Building_Qt_5_from_Git | generic instructions for building Qt5]]. You just have to make sure that you initialize only those modules which you need and which are supported and make sure you skip &quot;qtwebkit&amp;quot;, unless you know how to build it for QNX:
</code><br />./init-repository —no-webkit —module-subset=qtbase,qtxmlpatterns,qtdeclarative,qtmultimedia,qtgraphicaleffects,qtquickcontrols,qtsvg,qtimageformats<br /><code>
If you use an archive with Qt5 source code you can proceed to the next steps : configuring the build.
== Configure and building QtBase ==
Configuring and building Qt 5 for QNX is very similar to other platforms so it is worth having a quick read through [[Building_Qt_5_from_Git | generic instructions for building Qt5]] and take a look on the [[Building-Qt5-for-Blackberry|Build Instructions for BlackBerry 10]] before proceeding.
When running configure, the &quot;xplatform&amp;quot; parameter has to be passed to the script. The value of this parameter for QNX is &quot;qnx-armle-v7-qcc&amp;quot; for '''arm''' builds and &quot;qnx-x86-qcc&amp;quot; for '''x86''' builds. You can configure and make a build only for one target in one run.
If you cloned separate modules from git, you have to change into the folder with the QtBase module and run &quot;configure&amp;quot; from there. If you have cloned Qt5 master repository, or use an archive with all Qt5 sources, you use the configure located in the root folder of the Qt source code base.
Building with the install prefix &quot;-prefix&amp;quot; is highly recommended. The prefix parameter should be set to the location where Qt will be installed on the host.
=== Linux ===
On Linux and Mac the &quot;configure&amp;quot; shell script has to be executed.
</code>./configure -prefix &lt;INSTALLFOLDER&amp;gt; -xplatform qnx-armle-v7-qcc</code>
If you do very frequent builds you can also add &quot;-confirm-license&amp;quot; and pre-select the type of license your are using with e.g. &quot;-opensource&amp;quot;. This will let configure just run and not ask any questions on the console.
Note that this are minimal required configure options. Other options can be used as well, e.g. to shorted the build time by exclusion of tests or examples, etc.
If you build modules separately, QtBase can simply be built by executing
<code>make -j&amp;lt;N&amp;gt;<br />make install<br /></code>
The same command will make and install in the entire Qt with other choices
=== Windows ===
The steps for Linux are valid for Windows, considering the well-known platform differences. There are no QNX specific differences in building on Windows.
== Building other modules ==
If you build modules separately, you should now have the QtBase module installed in the &lt;INSTALLFOLDER&amp;gt; directory. In order to build the other Qt modules, you should just go through all git repositories you cloned as above and build them as “regular” Qt projects. Make sure that you use &quot;qmake&amp;quot; from the QtBase module you just have built and installed (i.e. from the &lt;INSTALLFOLDER&amp;gt;/bin directory) and not the one you might have in $PATH.
Some modules have dependencies to others (e.g. QtQuickControls depend on QtQuick to be built and installed). If built in the wrong order the results might be build errors or disabled features. So it is recommended to build the modules in the order as listed above.
=== Use the build ===
See the page [[QNX-App-development-and-deployment|Qt application development and deployment on QNX]] to learn how to use this build for development.
== Pre-Built Binaries ==
Binary installers for QNX are available with commercially licensed &quot;Qt Enterprise&amp;quot;:http://qt.digia.com/Products/Qt-Enterprise-Embedded/RTOS/.

Revision as of 12:50, 24 February 2015