Building Qt for Symbian 3 Devices

From Qt Wiki
Revision as of 10:06, 24 February 2015 by Maintenance script (talk | contribs)
Jump to navigation Jump to search


[toc align_right="yes" depth="3"]

Building Qt for Symbian^3 devices

This guide provides information required to set up environment and build Qt libraries that can be installed on a Symbian^3 device. The produced libraries will not be binary compatible with any official Qt releases, so any applications you wish to run must be also built against these libraries.

Environment setup

The following tools are needed for building a Qt package:

Required environment variables:

  • EPOCROOT environment variable must point to PDK root. E.g. <code&gt;set EPOCROOT=C:PDK3.0.3</code&gt;
  • Depending on compiler you are using:
    • RVCT22BIN, RVCT22INC, and RVCT22LIB. These need to point to <code&gt;bin&lt;/code&gt;, <code&gt;inc&lt;/code&gt; (or <code&gt;include&lt;/code&gt;), and <code&gt;lib&lt;/code&gt; directories under your RVCT 2.2 installation. Normally these are set by RVCT 2.2 installer.
    • RVCT40BIN, RVCT40INC, and RVCT40LIB are the corresponding variables for RVCT 4.0.
  • PATH environment variable must contain the following paths in the beginning to ensure correct tools are used.
    • <code&gt;lt;Qt source rootgt;bin&lt;/code&gt; for qmake and Qt tools.
    • <code&gt;lt;PDT installation rootgt;Raptorwin32mingwbin&lt;/code&gt; for Mingw make.
    • <code&gt;lt;PDT installation rootgt;Raptorbin&lt;/code&gt; for sbs tool.
    • <code&gt;EPOCROOT%epoc32tools&lt;/code&gt; for required Symbian tools.


Here are sample commands you can edit to match your environment and save as setenv.bat to set up your Qt building environment:


Change to your Qt source root directory:

 C:<br /> cd


Set up the environment variables:


 SET EPOCROOT=C:.0.3 SET RVCT22BIN=C:_22\bin<br /> SET RVCT22INC=C:_22\inc<br /> SET RVCT22LIB=C:_22\lib<br /> SET PATH=&amp;#x25;CD&amp;amp;#x25;;C:_1.7\Raptor\win32\mingw\bin;C:_1.7\Raptor\bin;&amp;#x25;EPOCROOT&amp;amp;#x25;epoc32\tools;&amp;#x25;PATH&amp;amp;#x25;
<br />



h3. Signing certificate
A signing certificate is needed if you are not satisfied with the default self-signable set of supported capabilities for Qt libraries (i.e. LocalServices, NetworkServices, ReadUserData, UserEnvironment, and WriteUserData). The capabilities Qt libraries require depends on the capabilities of the applications you plan on running against the Qt libraries you build; the Qt libraries need at least all of the capabilities the application has. The best certificate to use would be a manufacturer’s RnD certificate, but unless you are working for a device manufacturer, you probably won’t have access to such a certificate. The next best thing is a Symbian developer certificate. See "here&quot;:https://www.symbiansigned.com/app/page for details about acquiring a developer certificate.
h2. Building Qt
h3. Configure Qt
Give the following command in your Qt source root directory to configure Qt:


configure -platform win32-g++ -xplatform symbian-sbsv2 -openvg -graphicssystem openvg -no-usedeffiles -nomake demos -nomake examples -qtlibinfix OfMyOwn -make make<br />


* Note: If you do not need Webkit, you can reduce the build time around 50 by adding “-no-webkit” parameter to configure.

Build Qt & QtWebkit

Depending on your chosen compiler, select one of commands below to compile Qt and give it at the Qt source root directory:

make release-armv6<br />make release-armv6-rvct4.0<br />

Installing Qt libraries to device

By default Qt libraries are built with “All -Tcb” capabilities, which requires a certificate normally only available for device manufacturers to sign. Depending on what kind of certificate you have available, you might need to patch the capabilities of the Qt libraries. To create Qt installation packages, run the following commands:

If you are content with default set of self-signable capabilities and do not have any extra certificate:

cd src\s60installs<br />make sis QT_SIS_OPTIONS=-i

cd ..rdparty\webkit\WebCore<br />make sis QT_SIS_OPTIONS=-i<br />

If you have a manufacturer RnD certificate and a RnD device:

<br />cd src\s60installs<br />make sis QT_SIS_OPTIONS=-i QT_SIS_CERTIFICATE=&lt;certificate file&amp;gt; QT_SIS_KEY=&lt;certificate key file&amp;gt;

cd ..rdparty\webkit\WebCore<br />make sis QT_SIS_OPTIONS=-i QT_SIS_CERTIFICATE=&lt;certificate file&amp;gt; QT_SIS_KEY=&lt;certificate key file&amp;gt;<br />

If you are using developer certificate with maximum non-manufacturer capabilities:

cd src\s60installs<br />patch_capabilities.pl QtOfMyOwn_template.pkg release-armv6 &quot;ALL -Tcb -AllFiles -DRM&amp;quot;<br />make sis QT_SIS_OPTIONS=-i QT_SIS_CERTIFICATE=&lt;certificate file&amp;gt; QT_SIS_KEY=&lt;certificate key file&amp;gt;

cd ..rdparty\webkit\WebCore<br />patch_capabilities.pl QtWebKitOfMyOwn_template.pkg release-armv6 &quot;ALL -Tcb -AllFiles -DRM&amp;quot;<br />make sis QT_SIS_OPTIONS=-i QT_SIS_CERTIFICATE=&lt;certificate file&amp;gt; QT_SIS_KEY=&lt;certificate key file&amp;gt;<br />
  • Note 1: <code&gt;QT_SIS_OPTIONS=-i&lt;/code&gt; is simply a convenience parameter that causes automatic installation to a connected device after package is created.
  • Note 2: Infixing Qml plugins is broken in Qt 4.7.0 and 4.7.1 releases, so if the device already has Qt 4.7.x pre-installed, you will need to edit the .pkg files and remove all lines with qmldir on them before creating the package or you won’t be able to install it due to same files already having been installed by existing package. You can also expect qml plugins not working properly with infixed Qt in these releases.

Building applications

Build your own applications normally using the same make target that you used to build the Qt and use same “make sis” options. E.g. for RVCT 2.2 build using self-signed certificate, use the following commands:

cd &lt;your app dir&amp;gt;<br />qmake<br />make release-armv6<br />make sis QT_SIS_OPTIONS=-i<br />