Download as doc, pdf, or txt
Download as doc, pdf, or txt
You are on page 1of 2

Summarising the process of building qt libraries.

1) Download and Install cross compiler from the code sourcery link below.

http://www.codesourcery.com/sgpp/lite/arm/portal/release1600

The step by step process is described in the reference document given below.

http://www.codesourcery.com/sgpp/lite/arm/portal/doc9947/getting-started.pdf

2) Download and unzip qt for embedded

Download "Qt libraries 4.7.1 for embedded Linux (202 MB)" under LGPL tab from the link below

http://qt.nokia.com/downloads/

3) Configure and compile qt for embedded

* Step 1: Set the Cross-Compiler's Path

export PATH=path/to/cross/compiler:$PATH

* Step 2: Building libraries

./configure -embedded arm -xplatform qws/linux-arm-g++ <other options>

* Step 3: set path to 'qmake'

export PATH=path/to/qmake:$PATH

* Step 4: compile the required application


The step by step process is described in detail in the link given below.

http://doc.qt.nokia.com/4.4/qt-embedded-install.html

4) Compiling the application

cd path/to/myApplication

qmake -project

qmake

make

Reference:

http://doc.qt.nokia.com/4.4/qt-embedded-crosscompiling.html

http://doc.qt.nokia.com/4.4/qt-embedded-deployment.html

You might also like