Qt for Google Native Client

From Qt Wiki
Revision as of 17:35, 12 March 2015 by AutoSpider (talk | contribs) (Decode HTML entity names)
Jump to navigation Jump to search
This article may require cleanup to meet the Qt Wiki's quality standards. Reason: Auto-imported from ExpressionEngine.
Please improve this article if you can. Remove the {{cleanup}} tag and add this page to Updated pages list after it's clean.

[toc align_right="yes" depth="3"]

Qt for Google Native Client

Qt for Native Client allows you to deploy and run Qt applications in supported web browsers. Native Client is currently implemented in the Chrome browser.

For a general introduction to Native Client see the project page or the 2011 Google IO talk

Getting Started

To develop C+-based Qt applications targeting native client you need the following:

  1. A Mac OS X or Gnu/Linux system. Windows is not supported.
  2. The nacl SDK. Qt is currently developed against SDK version 18 using glibc toolchain.
  3. Chrome from Google. Qt is currently developed against Chromium 18.
  4. "qtbase-nacl" (Qt 5) https://github.com/msorvig/qt5-qtbase-nacl
  5. "qttools-nacl" (Qt 5) https://github.com/msorvig/qt5-qttools-nacl

Configuring and building Qt

Qt 5 is now the preferred version, and includes improvements such as shared builds, glibc toolchain support and a better nacldeployqt that can create multi-arch app distributions.

32-bit:

./configure -xplatform unsupported/nacl-g++ -device-option CROSS_COMPILE=/path/to/nacl_sdk/pepper_19/toolchain/mac_x86_glibc/bin/ -nomake examples -nomake tests -developer-build -opensource -confirm-license -reduce-relocations

64-bit:

./configure -xplatform unsupported/nacl64-g++ -device-option CROSS_COMPILE=/path/to/nacl_sdk/pepper_19/toolchain/mac_x86_glibc/bin/ -nomake tests -developer-build -opensource -confirm-license -release -no-sse2 -no-sse3 -no-ssse3 -no-sse4.1 -no-sse4.2

make sub-src (should complete)

Qt Deployment

QtTools now includes the nacldeployqt tool which supports packaging a Qt app with all its dependencies. Building your app should give you a .nexe file, which nacldeployqt can extract dependencies from.

  1. Build qttools/src/nacldeployqt using HOST Qt: (/path/to/host/qt/bin/qmake -nocache nacldeployqt.pro)
  2. Developer deployment: "nacldeployqt MyApp.nexe -server" . Open Chrome at localhost:5103
  3. Distribution deployment with multiple archs: "nacldeployqt x86-32/MyApp.nexe x86-64/MyApp.nexe targetDirectory"

nacldeployqt creates loader html&javascript, the .nmf manifest file, copies dependencies and also generates files that can serve as starting point for Chrome Web Store deployment.

Porting Guide

  • Widgets generally work
  • OpenGL, [QtDeclarative|Quick|1|2], [QtMultimedia|Kit], or anything else outside of QtBase is not currently supported.
  • Q_OS_NACL is your friend
  • Re-entering the event loop is not supported. (QFileDialog::getOpenFileName() will not work; QFileDialog::show() can be made to work at some point)
  • Window management is tricky and only partially implemented. For best results use one top-level window only.

Roadmap

  • OpenGL support

Qt Creator [NOT TESTED WITH QT 5]

Qt Creator supports targeting the NaCl toolchain, and launching apps using the chrome(ium) browser. The toolchain and browser are found by looking in the PATH, make sure “which i686-nacl-gcc” and “which chrome” returns the correct binaries. Also make sure that Qt Creator actually sees the correct PATH, launching it directly from the terminal usually does the trick.

If everything works correctly then there should be a “NaCl GCC” toolchain as well as a “NaCl” target available.