summaryrefslogtreecommitdiffstats
path: root/doc/src/platforms/platform-notes-rtos.qdoc
blob: 62d5add3c1b5ea88125d4d7d214d9f6be60d365a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
/****************************************************************************
**
** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
** All rights reserved.
** Contact: Nokia Corporation (qt-info@nokia.com)
**
** This file is part of the documentation of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:FDL$
** GNU Free Documentation License
** Alternatively, this file may be used under the terms of the GNU Free
** Documentation License version 1.3 as published by the Free Software
** Foundation and appearing in the file included in the packaging of
** this file.
**
** Other Usage
** Alternatively, this file may be used in accordance with the terms
** and conditions contained in a signed written agreement between you
** and Nokia.
**
**
**
**
** $QT_END_LICENSE$
**
****************************************************************************/

/*!
    \page platform-notes-vxworks.html
    \title Platform and Compiler Notes - VxWorks
    \contentspage Platform and Compiler Notes
    \target VxWorks

    \note VxWorks is a community supported platform. See the
    \l{Supported Platforms} page for more information.

    This page contains information about the Qt for VxWorks port. More
    information about the combinations of platforms and compilers supported
    by Qt can be found on the \l{Supported Platforms} page.

    \tableofcontents

    \section1 Supported Versions

    Qt has been tested on WindRiver VxWorks 6.7 in kernel mode using the
    vendor supplied GCC compiler, targetting both the x86 simulator
    (simpentium) and Power-PC devices (ppc).
    VxWorks' RTP mode is currently not supported.

    \section1 Limitations

    The VxWorks kernel has an optional POSIX compatibility layer, but this
    layer does not implement all POSIX functionality needed for a complete
    Qt port.

    \table
    \header \o Function \o Notes
    \row \o QProcess
         \o Not available - VxWorks has no concept of processes.
    \row \o QSharedMemory
         \o Not available - VxWorks has only a global, flat address space.
    \row \o QSystemSemaphore
         \o Not available - VxWorks has no concept of processes.
    \row \o QLibrary
         \o QLibrary is only a small stub to make it possible to build
            static plugins.
    \row \o QCoreApplication
         \o Can only be instantiated once. Qt's Q(CoreE)Application is
            tightly coupled to one address space and process, while VxWorks
            only supports one global address space and has no concept of
            processes.
    \row \o Phonon
         \o There is no standard audio backend, which could be integrated into Phonon.
    \row \o Qt3Support
         \o The Qt3Support library is not available on VxWorks.

    \endtable

    \section1 Build Instructions

    Qt for VxWorks needs to be \l{Cross-Compiling Qt for Embedded Linux
    Applications}{cross-compiled} on a Linux host.  \c configure and \c make
    the build like you would with a standard \l{Cross-Compiling Qt for
    Embedded Linux Applications}{embedded Linux cross build}.  Building the
    VxWorks simulator would be done like this:

    \code
    <path/to/qt/sources>/configure -xplatform unsupported/vxworks-simpentium-g++ -embedded vxworks -exceptions -no-gfx-linuxfb -no-mouse-linuxtp -no-mouse-pc -no-kbd-tty
    make
    \endcode

    \list
    \o \c{-xplatform unsupported/qws/vxworks-simpentium-g++} - selects the x86 simulator mkspec for VxWorks
    \o \c{-embedded vxworks} - builds the embedded version of Qt and sets the architecture to VxWorks
    \o \c{-exceptions} - see General Notes below
    \o \c{-no-gfx-linuxfb}, \c{-no-mouse-linuxtp}, \c{-no-mouse-pc} and \c{-no-kbd-tty} are Linux specific and won't work on VxWorks
    \endlist

    \section1 General Notes

    \list

    \o Configuring with \c{-exceptions} is necessary, because the VxWorks
    6.7 g++ headers require exceptions to be enabled when compiling C++
    code.

    \o Configure's \c{-xplatform} can be any of
    \c{unsupported/vxworks-(simpentium|ppc)-(g++|dcc)}, but \c{dcc}
    (WindRiver DIAB compiler) has not yet tested been tested with Qt 4.6 and
    VxWorks 6.7.

    \o Building shared libraries with \c{-shared} (the default) doesn't
    really build shared libraries, like e.g.  on Linux, since these are not
    supported by VxWorks.  Instead, qmake will created partially linked
    objects, that can be loaded at runtime with \c{ld}.

    \o Creating static builds with \c{-static} is fully supported.

    \o "Munching" (generating constructors/destructors for static C++
    objects) is done automatically by a special qmake extension (for both
    shared libraries and executables)

    \o VxWorks does not have a file system layer, but the low level storage
    drivers have to supply a file system like interface to the applications.
    Since each driver implements a different subset of the functionality
    supported by this interface, Qt's file system auto-tests show wildly
    differing results running on different "file systems".  The best results
    can be achieved when running on a (writable) NFS mount, since that
    provides the most Unix-ish interface.  The worst results come from the
    FTP file system driver, which may crash when accessed by a
    \c{QFileInfo}.

    \o Keep in mind that VxWorks doesn't call your \c{main()} function with
    the standard \c{argc}/\c{argv} parameters.  So either add a special
    \c{vxmain()} function or use a tool like \c{callmain} to translate
    VxWorks' commandline arguments to an \c{argc}/\c{argv} array.

    \o Some example will fail to build, due to some missing dependencies
    (e.g. shared memory) - this will be fixed in a later release.

    \endlist
*/

/*!
    \page platform-notes-qnx.html
    \title Platform and Compiler Notes - QNX
    \contentspage Platform and Compiler Notes
    \target QNX

    \note QNX is a community supported platform. See the
    \l{Supported Platforms} page for more information.

    This page contains information about the Qt for QNX port. More
    information about the combinations of platforms and compilers supported
    by Qt can be found on the \l{Supported Platforms} page.

    Note that Qt for QNX is currently based on \l{Qt for Embedded Linux}, which
    contains its own windowing system. Mixing QNX's Photon environment with
    Qt for QNX is currently not possible. Building Qt for QNX with Photon's
    X11 embedded server is not recommended due to missing support for X11 extensions,
    resulting in poor rendering quality.

    Qt for QNX contains experimental screen and input drivers based on QNX's
    \c devi-hid and \c io-display. For more information, check the class documentation
    for QQnxScreen, QWSQnxKeyboardHandler and QQnxMouseHandler. See the
    \l{Porting Qt for Embedded Linux to a New Architecture} document for information
    on how to add custom screen or input drivers.

    \tableofcontents

    \section1 Supported Versions

    Qt has been tested on QNX 6.4 on i386 and PowerPC targets with QNX's default
    gcc compiler.

    \section1 Limitations

    Some of Qt's functionality is currently not available on QNX:

    \table
    \header \o Function \o Notes
    \row \o QProcess
         \o Not available - QNX doesn't support mixing threads and processes.
    \row \o QSharedMemory
         \o Not available - QNX doesn't support SYSV style shared memory.
    \row \o QSystemSemaphore
         \o Not available - QNX doesn't support SYSV style system semaphores.
    \row \o QWS Multi Process
         \o QT_NO_QWS_MULTIPROCESS is always on due to missing shared memory support.
    \row \o Phonon
         \o There is no standard audio backend, which could be integrated into Phonon.
    \row \o Qt3Support
         \o The Qt3Support library is not available on QNX.
    \endtable

    \section1 Build Instructions

    Qt for QNX needs to be built either on a QNX system, or \l{Cross-Compiling Qt
    for Embedded Linux Applications}{cross-compiled} on a Linux host. In either
    case, The QNX Software Development Platform must be installed.

    Example configure line for cross-compiling Qt for QNX on a Linux host for an
    i386 QNX target:

    \code
    configure -xplatform unsupported/qws/qnx-i386-g++ -embedded i386 -no-gfx-linuxfb -no-mouse-linuxtp -no-kbd-tty -no-qt3support -qt-gfx-qnx -qt-mouse-qnx -qt-kbd-qnx -no-exceptions
    \endcode

    \list
    \o \c{-xplatform unsupported/qws/qnx-i386-g++} - selects the i386-g++ mkspec for QNX
    \o \c{-embedded i386} - builds the embedded version of Qt and sets the architecture to i386
    \o \c{-no-gfx-linuxfb},  \c{-no-mouse-linuxtp} and \c{-no-kbd-tty} are Linux specific and won't work on QNX
    \o \c{-no-qt3support} - required since the Qt3 support classes are not supported on QNX
    \o \c{-no-exceptions} - reduces the size of the library by disabling exception support
    \o \c{-qt-gfx-qnx} - enables the experimental \c{io-graphics} based display driver
    \o \c{-qt-mouse-qnx} - enables the experimental \c{devi-hig} based mouse driver
    \o \c{-qt-kbd-qnx} - enables the experimental \c{devi-hig} based keyboard driver
    \endlist

    \section1 General Notes

    \list
    \o To enable the experimental QNX display and input drivers, \c{io-display} needs to be
       up and running. The \c devi-hid based Qt input drivers require \c devi-hid to run
       in resource mode without Photon support. To enable a standard mouse and keyboard
       combination, run \c devi-hid as follows: \c{/usr/photon/bin/devi-hid -Pr kbd mouse}.
       Note that your current shell will not accept keyboard and mouse input anymore after
       running that command, so run it either from a script that launches a Qt application
       afterwards, or make sure to have remote login available to launch a Qt application.
       In addition, the \c QWS_DISPLAY, \c QWS_MOUSE_PROTO and \c QWS_KEYBOARD environment
       variables should all be set to \c{qnx} before running a Qt application.

    \o The 3rd party TIFF library currently doesn't build due to the missing \c inflateSync
       symbol from QNX's \c{libz.so.2}. Workarounds would be to manually replace QNX's libz
       with a newer version, or disable the TIFF plugin entierly by appending
       \c{QT_CONFIG += no-tiff} to \c{.qmake.cache} after configuring Qt.

    \o Some of the tools, examples and demos do not compile due to dependencies on QProcess
       or other classes that are not available on QNX.
    \endlist

    \section1 Platform Regressions

    Qt for QNX's behavior is mostly identical with \l{Qt for Embedded Linux}. However,
    some regressions were spotted in QDateTime computation around year 0 and year 1970,
    which have been tracked back to faulty time zone data on some QNX versions.
*/

/*!
    \page platform-notes-integrity.html
    \title Platform Notes - INTEGRITY
    \contentspage Platform Notes
    \target INTEGRITY

    \note INTEGRITY is a community supported platform. See the
    \l{Supported Platforms} page for more information.

    This page contains information about the Qt for INTEGRITY port. More
    information about the combinations of platforms and compilers supported
    by Qt can be found on the \l{Supported Platforms} page.

    Note that Qt for INTEGRITY is currently based on \l{Qt for Embedded Linux},
    which contains its own windowing system.

    Qt for INTEGRITY contains experimental screen and input drivers based on the
    gh_FB Framebuffer API for graphics, a Connection-based mouse and keyboard
    support. For information about these drivers, please refer to Green Hills
    Software standard support.

    \tableofcontents

    \section1 Supported Versions

    Qt has been tested on INTEGRITY 10 on various PowerPC, ARM and x86 targets.
    On some platforms a native graphics FrameBuffer driver is available and has
    then been used for testing. On all other platforms, the default FrameBuffer
    VNC driver is used.

    \section1 Limitations

    Some of Qt's functionality is currently not available on INTEGRITY:

    \table
    \header \o Function \o Notes
    \row \o QProcess
         \o Not implemented. Volunteers welcome.
    \row \o QSharedMemory
         \o Not available - INTEGRITY doesn't support SYSV style shared memory.
    \row \o QSystemSemaphore
         \o Not available - INTEGRITY doesn't support SYSV style system semaphores.
    \row \o QWS Multi Process
         \o QT_NO_QWS_MULTIPROCESS is always on due to missing shared memory support.
    \row \o Phonon
         \o There is no standard audio backend.
    \row \o Qt3Support
         \o The Qt3Support library is not available on INTEGRITY.
    \row \o QtScript
         \o Not available - INTEGRITY's mmap() doesn't support allocating memory.
    \endtable

    \section1 Build Instructions

    Qt for INTEGRITY can be built on either a Linux or Windows (with cygwin) host.
    In both cases, a standard installation of INTEGRITY is required, with the
    addition of the FrameBuffer API.

    Example configure line for cross-compiling Qt for INTEGRITY for an
    ARM INTEGRITY target:

    \code
    ./configure --hostprefix=$PWD -embedded integrity -xplatform unsupported/qws/integrity-arm-cxarm -static -qt-kbd-integrity -qt-mouse-integrity -no-mouse-linuxtp -no-mouse-pc -no-kbd-tty -qt-gfx-integrityfb -no-qt3support -no-gfx-linuxfb -no-glib -no-openssl -no-largefile -little-endian -arch integrity -prefix / -opensource -no-feature-QWS_MULTIPROCESS -no-feature-SHAREDMEMORY -no-feature-PROCESS -no-feature-SYSTEMSEMAPHORE -no-feature-PRINTER -no-feature-QWS_QPF2 -no-scripttools
    \endcode

    \list
    \o \c{--hostprefix=$PWD} - specifies the current directory as the base source for Qt
    \o \c{-arch integrity} - sets the architecture to INTEGRITY (for atomic operations)
    \o \c{-embedded integrity} - builds the embedded version of Qt and sets the architecture to INTEGRITY
    \o \c{-xplatform unsupported/qws/integrity-arm-cxarm} - selects the arm-cxarm mkspec for INTEGRITY
    \o \c{-static} - specifies a static build of Qt
    \o \c{-no-gfx-linuxfb},  \c{-no-mouse-linuxtp}, \c{-no-mouse-pc} and \c{-no-kbd-tty} are Linux specific and won't work on INTEGRITY
    \o \c{-no-qt3support} - required since the Qt3 support classes are not supported on INTEGRITY
    \o \c{-no-exceptions} - reduces the size of the library by disabling exception support
    \o \c{-no-openssl} - disable support for OpenSSL
    \o \c{-no-glib} - disable support for unavailable Glib
    \o \c{-no-largefile} - disable support for large (> 2TB) files
    \o \c{-no-scripttools} - disable support for QtScript tools
    \o \c{-qt-gfx-integrity} - enables the experimental gh_FB based display driver
    \o \c{-qt-mouse-integrity} - enables the experimental Connection-based mouse driver
    \o \c{-qt-kbd-integrity} - enables the experimental Connection-based keyboard driver
    \endlist

    The above script will generate MULTI .gpj Project files, not Makefiles. The
    main benefit of using these project files is automatic dependency checking,
    but this also provides an organization known to INTEGRITY customers.
    For Qt libraries, the top-level file is projects.gpj.

    \section1 General Notes

    \list
    \o Before you run the above configure line, you may want to modify the values
       of INTEGRITY_DIR and INTEGRITY_BSP in unsupported/qws/integrity-arm-cxarm/qmake.conf.
       If you do not do this, you will have to modify the resulting generated projects.gpj

    \o GIF support is currently not enabled.

    \o Default .int files are generated. You may want to modify the amount of heap assigned
       to each example by modifying the HeapSize declaration in the specific example .int file.

    \o Some of the tools, examples and demos do not compile due to dependencies on QProcess
       or other classes that are not available on INTEGRITY.

    \endlist

    \section1 Platform Regressions

*/