vote up 2 vote down star
1

The article Porting Qt for Embedded Linux to Another Operating System lists five things you have to do to port Qt for Embedded Linux to another OS. From the article:

There are several issues to be aware of if you plan to do your own port to another operating system. In particular you must resolve Qt for Embedded Linux's shared memory and semaphores (used to share window regions), and you must provide something similar to Unix-domain sockets for inter-application communication. You must also provide a screen driver, and if you want to implement sound you must provide your own sound server. Finally you must modify the event dispatcher used by Qt for Embedded Linux.

Is it really this easy to port Qt to another OS, or have i missed some information?

flag

80% accept rate
8  
None of those things sound particularly easy to me. – Neil Butterworth May 18 at 17:14
The listed steps shouldn't be too complicated given that you have an OS that supports the mechanisms described in the article. – Tobbe May 19 at 17:19

4 Answers

vote up 1 vote down

Assuming you find all those things easy, then the port is easy.

link|flag
vote up 2 vote down

Another important component to port would be QAtomic, to ensure that you can have atomic operations and implicit sharing working well. See also

http://labs.trolltech.com/blogs/2007/08/28/say-hello-to-qatomicint-and-qatomicpointer/

link|flag
vote up 2 vote down

Since Qt has been ported a large number of times it seems logical that it would be inherently simple. However the issue really is on the platform you are porting to and how many features it currently supports.

link|flag
vote up 0 vote down check

After investigating this in more detail I have come to the conclusion that the article "Porting Qt for Embedded Linux to Another Operating System" assumes that you are porting Qt to a very "linux-like" OS.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.