靜態構建不被支持。
分彆列齣從源代碼構建 Qt 5 模塊的要求,對於各個支持平颱:
此外,需要以下工具為構建 Qt WebEngine 模塊:
跳過 Qt WebEngine 構建的測試位於
qtwebengine
存儲庫,在
tools\qmake\mkspecs
子目錄。可以找到它們通過搜索
skipBuild
.
On all platforms, the following tools are required at build time:
在 Windows,需要以下額外工具:
Qt WebEngine 隻能在帶有 x64 位工具鏈的 64 位 Windows 中進行構建。為構建用於 x86 應用程序的 Qt WebEngine,需要采用 Visual Studio 2017 x64 to x86 交叉編譯工具鏈來配置和編譯 Qt。可以在命令行中設置此工具鏈,通過運行
vcvarsall.bat amd64_x86
.
在 Linux,需要 Clang 或 GCC 第 5 版或更高版本。支持配置
linux-g++
,
linux-clang
and
linux-clang-libc++
Qt WebEngine 要求
pkg-config
以檢測其大多數依賴。以下
pkg-config
文件要求:
dbus-1
fontconfig
若 Qt 被配置為
xcb
,以下
pkg-config
文件也是必需的:
libdrm
xcomposite
xcursor
xi
xrandr
xscrnsaver
xtst
在 macOS,需要以下:
注意:
無法為 macOS 的 32 位模式構建 Qt WebEngine (使用
macx-clang-32
mkspec
).
注意:
Universal debug or debug-and-release builds of Qt WebEngine on macOS are not supported in Qt 5 due to memory constraints of the build toolchain. Use the configure options
-force-debug-info
and
-separate-debug-info
for a build that can be used with a debugger.
支持采用早期版本 (到最新 LTS 版本) 的 Qt 構建 Qt WebEngine。意味著可以采用 Qt 5.12.x、Qt 5.14.x 及 Qt 5.15構建 Qt WebEngine 5.15。
要使用早期 Qt 版本構建 Qt Webengine:
qmake && make (&& make install)
.
Applications using Qt WebEngine are not compatible with the Mac App Store, because:
To make Qt WebEngine work correctly when streaming to an AppleTV from a MacBook that supports GPU switching, it is important to add the
NSSupportsAutomaticGraphicsSwitching
option to the application Info.plist file, with the value set to
YES
. Otherwise rendering issues might occur when creating new web engine view instances after Airplay is switched on or off.
If a new default QSurfaceFormat with a modified OpenGL profile has to be set, it should be set before the application instance is declared, to make sure that all created OpenGL contexts use the same OpenGL profile.
On macOS, if the default QSurfaceFormat is set after the application instance, the application will exit with qFatal (), and print a message that the default QSurfaceFormat should be set before the application instance.
Qt WebEngine 為 Chromium 渲染過程提供開箱即用的沙盒支持。
在 Linux,注意以下限定:
/proc/sys/kernel/unprivileged_userns_clone
到 1。
seccomp-bpf
特徵 (內核版本 3.5 或更高版本)。
要明確禁用沙盒,使用以下選項之一:
QTWEBENGINE_DISABLE_SANDBOX
環境變量到 1。
--no-sandbox
命令行自變量,給用戶應用程序可執行文件。
QTWEBENGINE_CHROMIUM_FLAGS
to
--no-sandbox
.
更多信息,見 使用命令行參數 .
當在 Docker 容器中運行 Qt WebEngine 範例並瀏覽內容繁重站點時,可能報告 BUS 錯誤 (SIGBUS)。通常,這是由於 Docker 運行過小內存空間 (譬如 64MB) 容器導緻的。要修復此問題,增加內存空間大小。
Qt WebEngine enables accessibility support for web pages when the following conditions are met:
On some old Linux configurations, accessibility can cause a significant slowdown on large HTML pages.
Because of that, Qt WebEngine accessibility support can be disabled on Linux, by setting the
QTWEBENGINE_ENABLE_LINUX_ACCESSIBILITY
environment variable to 0.
Because of a limitation in the Windows compositor, applications that show a fullscreen web engine view will not properly display popups or other top-level windows. The reason and workaround for the issue can be found at 基於 OpenGL 的窗口全屏 and QWindowsWindowFunctions::setHasBorderInFullScreen .