Reputation: 39395
I'm not familiar with Qt or with Google Native Client. Is it possible for a TRIVIAL Qt console application to be ported to Google Native Client? I understand that some work would be involved. But the question is, how much if it's even possible?
Upvotes: 10
Views: 2146
Reputation: 3459
Qt for Google Native Client Preview also updated here: http://qt-project.org/wiki/Qt_for_Google_Native_Client
Upvotes: 3
Reputation: 86
A Qt developer has managed to get some Qt examples running under Native Client: http://blog.qt.io/blog/2009/12/17/take-it-with-a-grain-of-salt/
Upvotes: 7
Reputation: 86
For those who are interested in using Qt with NaCl, I have made a Docker image containing Qt compiled with NaCl :
You will just need to follow the instructions to get your application compiled.
There is also a video showing the process of compiling Qt with NaCl. At the end of this video, there is an example:
Link to video of Qt compiled with NaCl
Hope this help
Upvotes: 0
Reputation: 11325
Qt now has an official Native Client SDK:
http://qt-project.org/wiki/Qt_for_Google_Native_Client
Upvotes: 4
Reputation: 231193
Since you can't use system calls, you'd need to essentially port Qt to a new OS (ie, Native Client). This'll be a lot of work - good luck!
Upvotes: 2