source: trunk/doc/src/snippets/code/doc_src_emb-crosscompiling.qdoc@ 244

Last change on this file since 244 was 2, checked in by Dmitry A. Kuminov, 16 years ago

Initially imported qt-all-opensource-src-4.5.1 from Trolltech.

File size: 650 bytes
Line 
1//! [0]
2export PATH=path/to/cross/compiler:$PATH
3//! [0]
4
5
6//! [1]
7./configure -embedded arm -xplatform qws/linux-arm-g++ <other options>
8//! [1]
9
10
11//! [2]
12cp path/to/QtEmbedded/mkspecs/qws/linux-mips-g++/...
13 path/to/QtEmbedded/mkspecs/qws/linux-myarchitecture-g++/...
14//! [2]
15
16
17//! [3]
18cd path/to/QtEmbedded
19./configure -embedded <architecture> -qt-kbd-<keyboarddriver>
20 -qt-mouse-<mousedriver> -qt-gfx-<screendriver>
21//! [3]
22
23
24//! [4]
25cd path/to/QtEmbedded
26./configure <other options>
27 -L /path/to/libjpeg/libraries -I /path/to/libjpeg/headers
28//! [4]
29
30
31//! [5]
32cd path/to/myApplication
33qmake -project
34qmake
35make
36//! [5]
Note: See TracBrowser for help on using the repository browser.