Building Qt for Symbian 3 Devices: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
[[Category:Developing_Qt::Symbian]]<br />[toc align_right=&quot;yes&amp;quot; depth=&quot;3&amp;quot;]
[[Category:Developing_Qt::Symbian]]
[toc align_right="yes" depth="3"]


= Building Qt for Symbian^3 devices =
= Building Qt for Symbian^3 devices =
Line 9: Line 10:
=== The following tools are needed for building a Qt package: ===
=== The following tools are needed for building a Qt package: ===


* &quot;ActiveState Perl 5.6.1 (build 638) or newer&amp;quot;:http://www.symlab.org/wiki/index.php/Kits_Q&amp;amp;As#How_do_I_install_Perl_on_my_C.2B.2B_development_PC.3F - Required by Qt and Symbian toolchains.
* "ActiveState Perl 5.6.1 (build 638) or newer":http://www.symlab.org/wiki/index.php/Kits_Q&amp;amp;As#How_do_I_install_Perl_on_my_C.2B.2B_development_PC.3F - Required by Qt and Symbian toolchains.
* &quot;ActiveState Python 2.6.x or newer&amp;quot;:http://www.symlab.org/wiki/index.php/Kits_Q&amp;amp;As#How_do_I_install_Python_on_my_C.2B.2B_development_PC.3F - Required by Symbian toolchain.
* "ActiveState Python 2.6.x or newer":http://www.symlab.org/wiki/index.php/Kits_Q&amp;amp;As#How_do_I_install_Python_on_my_C.2B.2B_development_PC.3F - Required by Symbian toolchain.
* &quot;PDT 1.7 or newer&amp;quot;:http://www.symlab.org/wiki/index.php/Product_Development_Toolkit_Quick_Start - Needed for Raptor (sbsv2) toolchain. Also includes Carbide IDE and other assorted tools.
* "PDT 1.7 or newer":http://www.symlab.org/wiki/index.php/Product_Development_Toolkit_Quick_Start - Needed for Raptor (sbsv2) toolchain. Also includes Carbide IDE and other assorted tools.
* &quot;PDK 3.0.3 or newer&amp;quot;:http://www.symlab.org/wiki/index.php/How_to_Download_a_PDK - Symbian platform.
* "PDK 3.0.3 or newer":http://www.symlab.org/wiki/index.php/How_to_Download_a_PDK - Symbian platform.
** Note: Installing some parts of the PDK require &quot;SYMBIAN FOUNDATION RESEARCH &amp; DEVELOPMENT LICENSE&amp;quot;, but those parts are not needed to build Qt so you don't need to worry about missing them.
** Note: Installing some parts of the PDK require "SYMBIAN FOUNDATION RESEARCH &amp; DEVELOPMENT LICENSE", but those parts are not needed to build Qt so you don't need to worry about missing them.
* The recommended compiler for building Qt libraries is &quot;RVCT 2.2 (build 686 or newer)&quot;:http://www.symlab.org/wiki/index.php/ARM_Real_View_Compilation_Tools_(RVCT)''Quick_Start - which is not available free of charge.<br />'''''' Alternatively, &quot;RVCT 4.0 (build 821 or newer)&quot;:http://www.symlab.org/wiki/index.php/ARM_Real_View_Compilation_Tools''(RVCT)_Quick_Start can be used. Unlike version 2.2, version 4.0 is available free of charge for small organizations.
* The recommended compiler for building Qt libraries is "RVCT 2.2 (build 686 or newer)":http://www.symlab.org/wiki/index.php/ARM_Real_View_Compilation_Tools_(RVCT)''Quick_Start - which is not available free of charge.
* The desired version of Qt source code - Available e.g. via &quot;Gitorius&amp;quot;:http://qt.gitorious.org/+qt-developers/qt/releases or &quot;ftp&amp;quot;:ftp://ftp.qt.nokia.com/qt/source/ (e.g. qt-everywhere-opensource-src-4.7.1.zip).
'''''' Alternatively, "RVCT 4.0 (build 821 or newer)":http://www.symlab.org/wiki/index.php/ARM_Real_View_Compilation_Tools''(RVCT)_Quick_Start can be used. Unlike version 2.2, version 4.0 is available free of charge for small organizations.
* The desired version of Qt source code - Available e.g. via "Gitorius":http://qt.gitorious.org/+qt-developers/qt/releases or "ftp":ftp://ftp.qt.nokia.com/qt/source/ (e.g. qt-everywhere-opensource-src-4.7.1.zip).


=== Required environment variables: ===
=== Required environment variables: ===


* EPOCROOT environment variable must point to PDK root. E.g. &lt;code&amp;gt;set EPOCROOT=C:PDK3.0.3&lt;/code&amp;gt;
* EPOCROOT environment variable must point to PDK root. E.g. <code>set EPOCROOT=C:PDK3.0.3</code>
* Depending on compiler you are using:
* Depending on compiler you are using:
** RVCT22BIN, RVCT22INC, and RVCT22LIB. These need to point to &lt;code&amp;gt;bin&amp;lt;/code&amp;gt;, &lt;code&amp;gt;inc&amp;lt;/code&amp;gt; (or &lt;code&amp;gt;include&amp;lt;/code&amp;gt;), and &lt;code&amp;gt;lib&amp;lt;/code&amp;gt; directories under your RVCT 2.2 installation. Normally these are set by RVCT 2.2 installer.
** RVCT22BIN, RVCT22INC, and RVCT22LIB. These need to point to <code>bin</code>, <code>inc</code> (or <code>include</code>), and <code>lib</code> 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.
** 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.
* PATH environment variable must contain the following paths in the beginning to ensure correct tools are used.
** &lt;code&amp;gt;lt;Qt source rootgt;bin&amp;lt;/code&amp;gt; for qmake and Qt tools.
** <code>lt;Qt source rootgt;bin</code> for qmake and Qt tools.
** &lt;code&amp;gt;lt;PDT installation rootgt;Raptorwin32mingwbin&amp;lt;/code&amp;gt; for Mingw make.
** <code>lt;PDT installation rootgt;Raptorwin32mingwbin</code> for Mingw make.
** &lt;code&amp;gt;lt;PDT installation rootgt;Raptorbin&amp;lt;/code&amp;gt; for sbs tool.
** <code>lt;PDT installation rootgt;Raptorbin</code> for sbs tool.
** &lt;code&amp;gt;EPOCROOT%epoc32tools&amp;lt;/code&amp;gt; for required Symbian tools.
** <code>EPOCROOT%epoc32tools</code> for required Symbian tools.
<br />Here are sample commands you can edit to match your environment and save as ''setenv.bat'' to set up your Qt building environment:


<br />Change to your Qt source root directory:<br /><code> C:<br /> cd </code>
Here are sample commands you can edit to match your environment and save as ''setenv.bat'' to set up your Qt building environment:
<br />Set up the environment variables:
<br /><code> 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 /></code>




<br />h3. Signing certificate
Change to your Qt source root directory:
<br />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 &quot;here&amp;quot;:https://www.symbiansigned.com/app/page for details about acquiring a developer certificate.
<code> C:
<br />h2. Building Qt
cd </code>
<br />h3. Configure Qt
 
<br />Give the following command in your Qt source root directory to configure Qt:
Set up the environment variables:
<br /><code>configure -platform win32-g++ -xplatform symbian-sbsv2 -openvg -graphicssystem openvg -no-usedeffiles -nomake demos -nomake examples -qtlibinfix OfMyOwn -make make<br /></code>
 
<br />* '''Note:''' If you do not need Webkit, you can reduce the build time around 50 by adding “-no-webkit” parameter to configure.
<code> SET EPOCROOT=C:.0.3 SET RVCT22BIN=C:_22\bin
SET RVCT22INC=C:_22\inc
SET RVCT22LIB=C:_22\lib
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;
 
</code>
 
 
 
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":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:
 
<code>configure -platform win32-g++ -xplatform symbian-sbsv2 -openvg -graphicssystem openvg -no-usedeffiles -nomake demos -nomake examples -qtlibinfix OfMyOwn -make make
</code>
 
* '''Note:''' If you do not need Webkit, you can reduce the build time around 50 by adding “-no-webkit” parameter to configure.


=== Build Qt &amp; QtWebkit ===
=== Build Qt &amp; QtWebkit ===
Line 48: Line 68:
Depending on your chosen compiler, select one of commands below to compile Qt and give it at the Qt source root directory:
Depending on your chosen compiler, select one of commands below to compile Qt and give it at the Qt source root directory:


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


== Installing Qt libraries to device ==
== Installing Qt libraries to device ==
Line 56: Line 78:
If you are content with default set of self-signable capabilities and do not have any extra certificate:
If you are content with default set of self-signable capabilities and do not have any extra certificate:


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


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


If you have a manufacturer RnD certificate and a RnD device:<br /><code><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;
If you have a manufacturer RnD certificate and a RnD device:
<code>
cd src\s60installs
make sis QT_SIS_OPTIONS=-i QT_SIS_CERTIFICATE=<certificate file> QT_SIS_KEY=<certificate key file>


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 /></code>
cd ..rdparty\webkit\WebCore
make sis QT_SIS_OPTIONS=-i QT_SIS_CERTIFICATE=<certificate file> QT_SIS_KEY=<certificate key file>
</code>


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


<code>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;
<code>cd src\s60installs
patch_capabilities.pl QtOfMyOwn_template.pkg release-armv6 "ALL -Tcb -AllFiles -DRM"
make sis QT_SIS_OPTIONS=-i QT_SIS_CERTIFICATE=<certificate file> QT_SIS_KEY=<certificate key file>


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 /></code>
cd ..rdparty\webkit\WebCore
patch_capabilities.pl QtWebKitOfMyOwn_template.pkg release-armv6 "ALL -Tcb -AllFiles -DRM"
make sis QT_SIS_OPTIONS=-i QT_SIS_CERTIFICATE=<certificate file> QT_SIS_KEY=<certificate key file>
</code>


* '''Note 1:''' &lt;code&amp;gt;QT_SIS_OPTIONS=-i&amp;lt;/code&amp;gt; is simply a convenience parameter that causes automatic installation to a connected device after package is created.
* '''Note 1:''' <code>QT_SIS_OPTIONS=-i</code> 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.
* '''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.
Line 78: Line 113:
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:
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:


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

Revision as of 10:26, 25 February 2015

[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:

' Alternatively, "RVCT 4.0 (build 821 or newer)":http://www.symlab.org/wiki/index.php/ARM_Real_View_Compilation_Tools(RVCT)_Quick_Start can be used. Unlike version 2.2, version 4.0 is available free of charge for small organizations.

Required environment variables:

  • EPOCROOT environment variable must point to PDK root. E.g.
    set EPOCROOT=C:PDK3.0.3
    
  • Depending on compiler you are using:
    • RVCT22BIN, RVCT22INC, and RVCT22LIB. These need to point to
      bin
      
      ,
      inc
      
      (or
      include
      
      ), and
      lib
      
      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.
    • lt;Qt source rootgt;bin
      
      for qmake and Qt tools.
    • lt;PDT installation rootgt;Raptorwin32mingwbin
      
      for Mingw make.
    • lt;PDT installation rootgt;Raptorbin
      
      for sbs tool.
    • EPOCROOT%epoc32tools
      
      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:
 cd

Set up the environment variables:

 SET EPOCROOT=C:.0.3 SET RVCT22BIN=C:_22\bin
 SET RVCT22INC=C:_22\inc
 SET RVCT22LIB=C:_22\lib
 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;


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":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
  • 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
make release-armv6-rvct4.0

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
make sis QT_SIS_OPTIONS=-i

cd ..rdparty\webkit\WebCore
make sis QT_SIS_OPTIONS=-i

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

cd src\s60installs
make sis QT_SIS_OPTIONS=-i QT_SIS_CERTIFICATE=<certificate file> QT_SIS_KEY=<certificate key file>

cd ..rdparty\webkit\WebCore
make sis QT_SIS_OPTIONS=-i QT_SIS_CERTIFICATE=<certificate file> QT_SIS_KEY=<certificate key file>

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

cd src\s60installs
patch_capabilities.pl QtOfMyOwn_template.pkg release-armv6 "ALL -Tcb -AllFiles -DRM"
make sis QT_SIS_OPTIONS=-i QT_SIS_CERTIFICATE=<certificate file> QT_SIS_KEY=<certificate key file>

cd ..rdparty\webkit\WebCore
patch_capabilities.pl QtWebKitOfMyOwn_template.pkg release-armv6 "ALL -Tcb -AllFiles -DRM"
make sis QT_SIS_OPTIONS=-i QT_SIS_CERTIFICATE=<certificate file> QT_SIS_KEY=<certificate key file>
  • Note 1:
    QT_SIS_OPTIONS=-i
    
    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 <your app dir>
qmake
make release-armv6
make sis QT_SIS_OPTIONS=-i