[Development] Failed to install qt-6.6.0 docs after buliding the 'html_docs' target
Haowei Hsu
hwhsu1231 at gmail.com
Sun Mar 17 05:24:05 CET 2024
Hello, Qt Development Team.
Recently, I tried to build and install qt-6.6.0 documentation from source
on Kubuntu 22.04.
Although the building process was successful, the installing process failed.
The following commands are what I runned to build and install qt-6.6.0
1) Install the Prerequisites: (following this wiki
<https://wiki.qt.io/Building_Qt_6_from_Git>)
sudo apt install gcc build-essential cmake python3 python3-pip ninja-build
> nodejs bison flex perl gperf libclang-dev libgl-dev libegl-dev
> libfontconfig1-dev libinput-dev
pip install html5lib
2) Check the Prerequisites:
apt list gcc build-essential cmake python3 python3-pip ninja-build nodejs
> bison flex perl gperf libclang-dev libgl-dev libegl-dev libfontconfig1-dev
> libinput-dev --installed
pip list | grep html5lib
3) Download the qt-6.6.0 source
export QT6_VER=6.6 && echo $QT6_VER
> export QT6_REL=6.6.0 && echo $QT6_REL
> curl -L
> https://download.qt.io/archive/qt/$QT6_VER/$QT6_REL/single/qt-everywhere-src-$QT6_REL.tar.xz
> -o qt-everywhere-src-$QT6_REL.tar.xz
> tar -xf qt-everywhere-src-$QT6_REL.tar.xz
> mv qt-everywhere-src-$QT6_REL qt-$QT6_REL
4) Configure the Qt6 project
cd qt-$QT6_REL
> mkdir build-qt && cd build-qt
> ../configure -prefix ../html/$QT6_REL
5) Build the Qt6 project with 'html_docs' target
cmake --build . --target html_docs
6) Install the Qt6 project
cmake --install .
You can see the full log in the attachments:
*log-build-install-qt-6-6-0-docs-on-kubuntu.txt*
As we can see in the full logs, there are:
- lots of *qdoc warnings: Can't link to 'XXXXX'* when building the
project
- A *file(INSTALL) cmake error on 'qtbase/libexec/tracepointgen'* when
installing the project
file INSTALL cannot find
>
> "/home/runner/work/build-qt6-docs/build-qt6-docs/qt6/build-qt/qtbase/libexec/tracepointgen":
> No such file or directory.
What happened? How to fix it?
---
Haowei Hsu
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.qt-project.org/pipermail/development/attachments/20240317/88f68847/attachment-0001.htm>
-------------- next part --------------
hwhsu1231 at vb-kubuntu:~/Repo/testing$ sudo apt install gcc build-essential cmake python3 python3-pip ninja-build nodejs bison flex perl gperf libclang-dev libgl-dev libegl-dev libfontconfig1-dev libinput-dev
正在讀取套件清單... 完成
正在重建相依關係... 完成
正在讀取狀態資料... 完成
bison is already the newest version (2:3.8.2+dfsg-1build1).
build-essential is already the newest version (12.9ubuntu3).
flex is already the newest version (2.6.4-8build2).
gcc is already the newest version (4:11.2.0-1ubuntu1).
libegl-dev is already the newest version (1.4.0-1).
libfontconfig1-dev is already the newest version (2.13.1-4.2ubuntu5).
libgl-dev is already the newest version (1.4.0-1).
gperf is already the newest version (3.1-1build1).
libclang-dev is already the newest version (1:14.0-55~exp2).
ninja-build is already the newest version (1.10.1-1).
cmake is already the newest version (3.22.1-1ubuntu1.22.04.2).
libinput-dev is already the newest version (1.20.0-1ubuntu0.3).
perl is already the newest version (5.34.0-3ubuntu1.3).
python3 is already the newest version (3.10.6-1~22.04).
nodejs is already the newest version (12.22.9~dfsg-1ubuntu3.4).
python3-pip is already the newest version (22.0.2+dfsg-1ubuntu0.4).
升級 0 個,新安裝 0 個,移除 0 個,有 8 個未被升級。
hwhsu1231 at vb-kubuntu:~/Repo/testing$ pip install html5lib
Defaulting to user installation because normal site-packages is not writeable
Requirement already satisfied: html5lib in /usr/lib/python3/dist-packages (1.1)
hwhsu1231 at vb-kubuntu:~/Repo/testing$ apt list gcc build-essential cmake python3 python3-pip ninja-build nodejs bison flex perl gperf libclang-dev libgl-dev libegl-dev libfontconfig1-dev libinput-dev --installed
Listing... 完成
bison/jammy,now 2:3.8.2+dfsg-1build1 amd64 [installed]
build-essential/jammy,now 12.9ubuntu3 amd64 [installed]
cmake/jammy-updates,now 3.22.1-1ubuntu1.22.04.2 amd64 [installed]
flex/jammy,now 2.6.4-8build2 amd64 [installed]
gcc/jammy,now 4:11.2.0-1ubuntu1 amd64 [installed]
gperf/jammy,now 3.1-1build1 amd64 [installed]
libclang-dev/jammy,now 1:14.0-55~exp2 amd64 [installed]
libegl-dev/jammy,now 1.4.0-1 amd64 [installed]
libfontconfig1-dev/jammy,now 2.13.1-4.2ubuntu5 amd64 [installed]
libgl-dev/jammy,now 1.4.0-1 amd64 [installed]
libinput-dev/jammy-updates,now 1.20.0-1ubuntu0.3 amd64 [installed]
ninja-build/jammy,now 1.10.1-1 amd64 [installed]
nodejs/jammy-updates,jammy-security,now 12.22.9~dfsg-1ubuntu3.4 amd64 [installed]
perl/jammy-updates,jammy-security,now 5.34.0-3ubuntu1.3 amd64 [installed]
python3-pip/jammy-updates,jammy-updates,jammy-security,jammy-security,now 22.0.2+dfsg-1ubuntu0.4 all [installed]
python3/jammy-updates,jammy-security,now 3.10.6-1~22.04 amd64 [installed]
hwhsu1231 at vb-kubuntu:~/Repo/testing$ pip list | grep html5lib
html5lib 1.1
hwhsu1231 at vb-kubuntu:~/Repo/testing$ export QT6_VER=6.6 && echo $QT6_VER
6.6
hwhsu1231 at vb-kubuntu:~/Repo/testing$ export QT6_REL=6.6.0 && echo $QT6_REL
6.6.0
hwhsu1231 at vb-kubuntu:~/Repo/testing$ curl -L https://download.qt.io/archive/qt/$QT6_VER/$QT6_REL/single/qt-everywhere-src-$QT6_REL.tar.xz -o qt-everywhere-src-$QT6_REL.tar.xz
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 279 100 279 0 0 162 0 0:00:01 0:00:01 --:--:-- 162
0 0 0 0 0 0 0 0 --:--:-- 0:00:02 --:--:-- 0
0 0 0 0 0 0 0 0 --:--:-- 0:00:03 --:--:-- 0
100 774M 100 774M 0 0 7522k 0 0:01:45 0:01:45 --:--:-- 10.9M
hwhsu1231 at vb-kubuntu:~/Repo/testing$ tar -xf qt-everywhere-src-$QT6_REL.tar.xz
hwhsu1231 at vb-kubuntu:~/Repo/testing$ mv qt-everywhere-src-$QT6_REL qt-$QT6_REL
hwhsu1231 at vb-kubuntu:~/Repo/testing$ cd qt-$QT6_REL
hwhsu1231 at vb-kubuntu:~/Repo/testing/qt-6.6.0$ mkdir build-qt && cd build-qt
hwhsu1231 at vb-kubuntu:~/Repo/testing/qt-6.6.0/build-qt$ ../configure -prefix ../html/$QT6_REL
+ mkdir -p qtbase
+ cd qtbase
+ exec /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/configure -top-level -prefix ../html/6.6.0
'/usr/bin/cmake' '-DQT_INTERNAL_CALLED_FROM_CONFIGURE:BOOL=TRUE' '-DCMAKE_INSTALL_PREFIX=../html/6.6.0' '-G' 'Ninja' '/home/hwhsu1231/Repo/testing/qt-6.6.0'
-- The CXX compiler identification is GNU 11.4.0
-- The C compiler identification is GNU 11.4.0
-- The ASM compiler identification is GNU
-- Found assembler: /usr/bin/cc
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++ - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/cc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Checking dependencies of submodule 'qtbase'
-- Checking dependencies of submodule 'qtimageformats'
-- Checking dependencies of submodule 'qtlanguageserver'
-- Checking dependencies of submodule 'qtshadertools'
-- Checking dependencies of submodule 'qtsvg'
-- Checking dependencies of submodule 'qtdeclarative'
-- Checking dependencies of submodule 'qtquicktimeline'
-- Checking dependencies of submodule 'qtquick3d'
-- Checking dependencies of submodule 'qtmultimedia'
-- Checking dependencies of submodule 'qt3d'
-- Checking dependencies of submodule 'qt5compat'
-- Checking dependencies of submodule 'qtactiveqt'
-- Checking dependencies of submodule 'qtcharts'
-- Checking dependencies of submodule 'qtcoap'
-- Checking dependencies of submodule 'qtconnectivity'
-- Checking dependencies of submodule 'qtdatavis3d'
-- Checking dependencies of submodule 'qtwebsockets'
-- Checking dependencies of submodule 'qthttpserver'
-- Checking dependencies of submodule 'qttools'
-- Checking dependencies of submodule 'qtserialport'
-- Checking dependencies of submodule 'qtpositioning'
-- Checking dependencies of submodule 'qtwebchannel'
-- Checking dependencies of submodule 'qtwebengine'
-- Checking dependencies of submodule 'qtdoc'
-- Checking dependencies of submodule 'qtgraphs'
-- Checking dependencies of submodule 'qtgrpc'
-- Checking dependencies of submodule 'qtlocation'
-- Checking dependencies of submodule 'qtlottie'
-- Checking dependencies of submodule 'qtmqtt'
-- Checking dependencies of submodule 'qtnetworkauth'
-- Checking dependencies of submodule 'qtopcua'
-- Checking dependencies of submodule 'qtquick3dphysics'
-- Checking dependencies of submodule 'qtquickeffectmaker'
-- Checking dependencies of submodule 'qtremoteobjects'
-- Checking dependencies of submodule 'qtscxml'
-- Checking dependencies of submodule 'qtsensors'
-- Checking dependencies of submodule 'qtserialbus'
-- Checking dependencies of submodule 'qtspeech'
-- Checking dependencies of submodule 'qttranslations'
-- Checking dependencies of submodule 'qtvirtualkeyboard'
-- Checking dependencies of submodule 'qtwayland'
-- Checking dependencies of submodule 'qtwebview'
-- Configuring submodule 'qtbase'
-DCMAKE_C_FLAGS_DEBUG=-g
-DCMAKE_C_FLAGS_RELEASE=-O3 -DNDEBUG
-DCMAKE_C_FLAGS_RELWITHDEBINFO=-O2 -g -DNDEBUG
-DCMAKE_CXX_FLAGS_DEBUG=-g
-DCMAKE_CXX_FLAGS_RELEASE=-O3 -DNDEBUG
-DCMAKE_CXX_FLAGS_RELWITHDEBINFO=-O2 -g -DNDEBUG
-DCMAKE_OBJCOPY=/usr/bin/objcopy
-DCMAKE_C_STANDARD=11
-DCMAKE_C_STANDARD_REQUIRED=ON
-DCMAKE_CXX_STANDARD=17
-DCMAKE_CXX_STANDARD_REQUIRED=ON
-DCMAKE_MODULE_PATH:STRING=/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/cmake/platforms
-- Configuring submodule 'qtimageformats'
-- Configuring submodule 'qtlanguageserver'
-- Configuring submodule 'qtshadertools'
-- Configuring submodule 'qtsvg'
-- Configuring submodule 'qtdeclarative'
-- Configuring submodule 'qtquicktimeline'
-- Configuring submodule 'qtquick3d'
-- Configuring submodule 'qtmultimedia'
-- Configuring submodule 'qt3d'
CMake Warning (dev) at build-qt/qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:404 (message):
INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
Please port your module to use declarative type registration.
Call Stack (most recent call first):
qt3d/src/quick3d/imports/render/CMakeLists.txt:10 (qt_internal_add_qml_module)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at build-qt/qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:404 (message):
INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
Please port your module to use declarative type registration.
Call Stack (most recent call first):
qt3d/src/quick3d/imports/scene3d/CMakeLists.txt:10 (qt_internal_add_qml_module)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at build-qt/qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:404 (message):
INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
Please port your module to use declarative type registration.
Call Stack (most recent call first):
qt3d/src/quick3d/imports/extras/CMakeLists.txt:10 (qt_internal_add_qml_module)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at build-qt/qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:404 (message):
INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
Please port your module to use declarative type registration.
Call Stack (most recent call first):
qt3d/src/quick3d/imports/scene2d/CMakeLists.txt:10 (qt_internal_add_qml_module)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at build-qt/qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:404 (message):
INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
Please port your module to use declarative type registration.
Call Stack (most recent call first):
qt3d/src/quick3d/imports/input/CMakeLists.txt:10 (qt_internal_add_qml_module)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at build-qt/qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:404 (message):
INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
Please port your module to use declarative type registration.
Call Stack (most recent call first):
qt3d/src/quick3d/imports/logic/CMakeLists.txt:10 (qt_internal_add_qml_module)
This warning is for project developers. Use -Wno-dev to suppress it.
CMake Warning (dev) at build-qt/qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:404 (message):
INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
Please port your module to use declarative type registration.
Call Stack (most recent call first):
qt3d/src/quick3d/imports/animation/CMakeLists.txt:10 (qt_internal_add_qml_module)
This warning is for project developers. Use -Wno-dev to suppress it.
-- Configuring submodule 'qt5compat'
CMake Warning (dev) at build-qt/qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:404 (message):
INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
Please port your module to use declarative type registration.
Call Stack (most recent call first):
qt5compat/src/imports/graphicaleffects5/CMakeLists.txt:36 (qt_internal_add_qml_module)
This warning is for project developers. Use -Wno-dev to suppress it.
-- Configuring submodule 'qtactiveqt'
Condition "WIN32" is not met, enabling documentation build only.
-- Configuring submodule 'qtcharts'
-- Configuring submodule 'qtcoap'
-- Configuring submodule 'qtconnectivity'
-- Configuring submodule 'qtdatavis3d'
-- Configuring submodule 'qtwebsockets'
CMake Warning (dev) at build-qt/qtbase/lib/cmake/Qt6Qml/Qt6QmlBuildInternals.cmake:404 (message):
INSTALL_SOURCE_QMLTYPES option is deprecated and should not be used.
Please port your module to use declarative type registration.
Call Stack (most recent call first):
qtwebsockets/src/imports/qmlwebsockets/CMakeLists.txt:4 (qt_internal_add_qml_module)
This warning is for project developers. Use -Wno-dev to suppress it.
-- Configuring submodule 'qthttpserver'
-- Configuring submodule 'qttools'
-- Configuring submodule 'qtserialport'
-- Configuring submodule 'qtpositioning'
-- Configuring submodule 'qtwebchannel'
-- Configuring submodule 'qtwebengine'
[QtWebEngine] -- Checking 'ulimit -n'
[QtWebEngine] -- Open files limit 1024
[QtWebEngine] -- Creating linker launcher
[QtWebEngine] -- Support check for QtWebEngine failed: node.js version 14 or later is required.
[QtWebEngine] -- Support check for QtPdf failed: node.js version 14 or later is required.
-- Configuring submodule 'qtdoc'
-- Configuring submodule 'qtgraphs'
-- Configuring submodule 'qtgrpc'
-- Configuring submodule 'qtlocation'
-- Configuring submodule 'qtlottie'
-- Configuring submodule 'qtmqtt'
-- Configuring submodule 'qtnetworkauth'
-- Configuring submodule 'qtopcua'
-- Configuring submodule 'qtquick3dphysics'
-- Configuring submodule 'qtquickeffectmaker'
Nodes path: ./qml/QtQuickEffectMaker/defaultnodes
-- Configuring submodule 'qtremoteobjects'
-- Configuring submodule 'qtscxml'
-- Configuring submodule 'qtsensors'
-- Configuring submodule 'qtserialbus'
-- Configuring submodule 'qtspeech'
-- Configuring submodule 'qttranslations'
-- Configuring submodule 'qtvirtualkeyboard'
-- Configuring submodule 'qtwayland'
CMake Warning at qtwayland/src/CMakeLists.txt:24 (message):
QtWayland is missing required dependencies, nothing will be built.
Although this could be considered an error, the configuration will still
pass as coin (Qt's continuous integration system) will fail the build if
configure fails, but will still try to configure the module on targets that
are missing dependencies.
-- Configuring submodule 'qtwebview'
-- Could NOT find Qt6WebEngineCore (missing: Qt6WebEngineCore_DIR)
CMake Warning at build-qt/qtbase/lib/cmake/Qt6/Qt6Config.cmake:213 (message):
Failed to find optional Qt component "WebEngineCore".
Expected Config file at
"/home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtbase/lib/cmake/Qt6WebEngineCore/Qt6WebEngineCoreConfig.cmake"
does NOT exist
Call Stack (most recent call first):
qtwebview/CMakeLists.txt:15 (find_package)
-- Could NOT find Qt6WebEngineQuick (missing: Qt6WebEngineQuick_DIR)
CMake Warning at build-qt/qtbase/lib/cmake/Qt6/Qt6Config.cmake:213 (message):
Failed to find optional Qt component "WebEngineQuick".
Expected Config file at
"/home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtbase/lib/cmake/Qt6WebEngineQuick/Qt6WebEngineQuickConfig.cmake"
does NOT exist
Call Stack (most recent call first):
qtwebview/CMakeLists.txt:15 (find_package)
-- Configuration summary shown below. It has also been written to /home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/config.summary
-- Configure with --log-level=STATUS or higher to increase CMake's message verbosity. The log level does not persist across reconfigurations.
-- Configure summary:
Building for: linux-g++ (x86_64, CPU features: )
Compiler: gcc 11.4.0
Build options:
Mode ................................... release
Optimize release build for size ........ no
Fully optimize release builds (-O3) .... no
Building shared libraries .............. yes
Using ccache ........................... no
Unity Build ............................ no
Using new DTAGS ........................ yes
Relocatable ............................ yes
Using precompiled headers .............. yes
Using Link Time Optimization (LTCG) .... no
Using Intel CET ........................ yes
Target compiler supports:
x86 Intrinsics ....................... Basic VAES AVX512VBMI2
Sanitizers:
Addresses ............................ no
Threads .............................. no
Memory ............................... no
Fuzzer (instrumentation only) ........ no
Undefined ............................ no
Build parts ............................ libs tools
Install examples sources ............... no
Qt modules and options:
Qt Concurrent .......................... yes
Qt D-Bus ............................... yes
Qt D-Bus directly linked to libdbus .... no
Qt Gui ................................. yes
Qt Network ............................. yes
Qt PrintSupport ........................ yes
Qt Sql ................................. yes
Qt Testlib ............................. yes
Qt Widgets ............................. yes
Qt Xml ................................. yes
Support enabled for:
Using pkg-config ....................... yes
Using vcpkg ............................ no
udev ................................... yes
OpenSSL ................................ yes
Qt directly linked to OpenSSL ........ no
OpenSSL 1.1 ............................ no
OpenSSL 3.0 ............................ yes
Using system zlib ...................... yes
Zstandard support ...................... no
Thread support ......................... yes
Common build options:
Linker can resolve circular dependencies yes
Qt Core:
backtrace .............................. yes
DoubleConversion ....................... yes
Using system DoubleConversion ........ no
CLONE_PIDFD support in forkfd .......... yes
GLib ................................... yes
ICU .................................... yes
Using system libb2 ..................... no
Built-in copy of the MIME database ..... yes
Application permissions ................ yes
Defaulting legacy IPC to POSIX ......... no
Tracing backend ........................ <none>
OpenSSL based cryptographic hash ....... no
Logging backends:
journald ............................. no
syslog ............................... no
slog2 ................................ no
PCRE2 .................................. yes
Using system PCRE2 ................... yes
Qt Sql:
SQL item models ........................ yes
Qt Network:
getifaddrs() ........................... yes
IPv6 ifname ............................ yes
libproxy ............................... no
Linux AF_NETLINK ....................... yes
DTLS ................................... yes
OCSP-stapling .......................... yes
SCTP ................................... no
Use system proxies ..................... yes
GSSAPI ................................. no
Brotli Decompression Support ........... yes
qIsEffectiveTLD() ...................... yes
Built-in publicsuffix database ....... yes
System publicsuffix database ......... yes
Core tools:
Android deployment tool ................ yes
macOS deployment tool .................. no
Windows deployment tool ................ no
qmake .................................. yes
Qt Gui:
Accessibility .......................... yes
FreeType ............................... yes
Using system FreeType ................ yes
HarfBuzz ............................... yes
Using system HarfBuzz ................ no
Fontconfig ............................. yes
Image formats:
GIF .................................. yes
ICO .................................. yes
JPEG ................................. yes
Using system libjpeg ............... no
PNG .................................. yes
Using system libpng ................ yes
Text formats:
HtmlParser ........................... yes
CssParser ............................ yes
OdfWriter ............................ yes
MarkdownReader ....................... yes
Using system libmd4c ............... no
MarkdownWriter ....................... yes
EGL .................................... yes
OpenVG ................................. no
OpenGL:
Desktop OpenGL ....................... yes
OpenGL ES 2.0 ........................ no
OpenGL ES 3.0 ........................ no
OpenGL ES 3.1 ........................ no
OpenGL ES 3.2 ........................ no
Vulkan ................................. no
Session Management ..................... yes
Features used by QPA backends:
evdev .................................. yes
libinput ............................... yes
HiRes wheel support in libinput ........ yes
INTEGRITY HID .......................... no
mtdev .................................. yes
tslib .................................. no
xkbcommon .............................. no
X11 specific:
XLib ................................. yes
XCB Xlib ............................. no
EGL on X11 ........................... yes
xkbcommon-x11 ........................ no
xcb-sm ............................... no
QPA backends:
DirectFB ............................... no
EGLFS .................................. yes
EGLFS details:
EGLFS OpenWFD ........................ no
EGLFS i.Mx6 .......................... no
EGLFS i.Mx6 Wayland .................. no
EGLFS RCAR ........................... no
EGLFS EGLDevice ...................... no
EGLFS GBM ............................ no
EGLFS VSP2 ........................... no
EGLFS Mali ........................... no
EGLFS Raspberry Pi ................... no
EGLFS X11 ............................ no
LinuxFB ................................ yes
VNC .................................... yes
VK_KHR_display ......................... no
QNX:
lgmon ................................ no
IMF .................................. no
XCB:
Using system-provided xcb-xinput ..... no
GL integrations:
GLX Plugin ......................... no
XCB GLX .......................... no
EGL-X11 Plugin ..................... no
Windows:
Direct 2D ............................ no
Direct 2D 1.1 ........................ no
DirectWrite .......................... no
DirectWrite 3 ........................ no
Qt Widgets:
GTK+ ................................... no
Styles ................................. Fusion Windows
Qt Testlib:
Tester for item models ................. yes
Batch tests ............................ no
Qt PrintSupport:
CUPS ................................... no
Qt Sql Drivers:
DB2 (IBM) .............................. no
InterBase .............................. no
MySql .................................. no
OCI (Oracle) ........................... no
ODBC ................................... no
PostgreSQL ............................. no
SQLite ................................. yes
Using system provided SQLite ......... no
Mimer .................................. no
Further Image Formats:
JasPer ................................. no
MNG .................................... no
TIFF ................................... yes
Using system libtiff ................. no
WEBP ................................... yes
Using system libwebp ................. no
Qt QML:
QML network support .................... yes
QML debugging and profiling support .... yes
QML just-in-time compiler .............. yes
QML XML http request ................... yes
QML Locale ............................. yes
Qt QML Models:
QML list model ......................... yes
QML delegate model ..................... yes
Qt Quick:
AnimatedImage item ..................... yes
Canvas item ............................ yes
Support for Qt Quick Designer .......... yes
Flipable item .......................... yes
GridView item .......................... yes
ListView item .......................... yes
TableView item ......................... yes
TreeView item .......................... yes
Path support ........................... yes
PathView item .......................... yes
Positioner items ....................... yes
Repeater item .......................... yes
ShaderEffect item ...................... yes
Sprite item ............................ yes
Qt Quick Templates 2:
Hover support .......................... yes
Multi-touch support .................... yes
Calendar support ....................... yes
Qt Quick Controls 2:
Styles ................................. Basic Fusion Imagine iOS Material Universal macOS Windows
QtQuick3D:
Assimp ................................. yes
System Assimp .......................... no
Qt Multimedia:
Spatial Audio .......................... yes
Spatial Audio (Quick3D) ................ yes
Low level Audio Backend:
ALSA (experimental) .................. no
PulseAudio ........................... no
MMRenderer ........................... no
CoreAudio ............................ no
Windows Media SDK .................... no
Open SLES (Android) .................. no
Web Assembly ......................... no
Plugin:
GStreamer 1.0 ........................ no
FFmpeg ............................... no
MMRenderer ........................... no
AVFoundation ......................... no
Windows Media Foundation ............. no
Hardware acceleration and features:
Video for Linux ...................... yes
VAAPI support ........................ no
Linux DMA buffer support ............. yes
VideoToolbox ......................... no
Qt 3D:
Assimp ................................. yes
System Assimp .......................... no
Aspects:
Render aspect ........................ yes
Input aspect ......................... yes
Logic aspect ......................... yes
Animation aspect ..................... yes
Extras aspect ........................ yes
Qt 3D APIs:
Vulkan ................................. no
Qt 3D Renderers:
OpenGL Renderer ........................ yes
RHI Renderer ........................... yes
Qt3D Geometry Loaders:
Autodesk FBX ........................... no
Qt 5 Compatibility Libraries:
iconv .................................. no
Qt Charts Types:
Area Chart ............................. yes
Line Chart ............................. yes
Spline Chart ........................... yes
Scatter Chart .......................... yes
Bar Chart .............................. yes
Pie Chart .............................. yes
Boxplot Chart .......................... yes
Candlestick Chart ...................... yes
Qt Axis Types:
DateTime Axis .......................... yes
Qt Bluetooth:
BlueZ .................................. no
BlueZ Low Energy ....................... no
Linux Crypto API ....................... no
WinRT Bluetooth API .................... no
Qt Tools:
Qt Assistant ........................... yes
libclang found ......................... yes
Clang-based lupdate parser ............. yes
Qt Designer ............................ yes
Qt Distance Field Generator ............ yes
Qt Linguist ............................ yes
pixeltool .............................. yes
qdbus .................................. yes
QDoc ................................... yes
Qt Attributions Scanner ................ yes
qtdiag ................................. yes
qtplugininfo ........................... yes
Serial Port:
ntddmodm ............................... no
WebEngine Repository Build Options:
Build Ninja ............................ no
Build Gn ............................... yes
Jumbo Build ............................ yes
Developer build ........................ no
Build QtWebEngine Modules:
Build QtWebEngineCore ................ no
Build QtWebEngineWidgets ............. no
Build QtWebEngineQuick ............... no
Build QtPdf Modules:
Build QtPdfWidgets ................... no
Build QtPdfQuick ..................... no
Optional system libraries:
re2 .................................. no
icu .................................. no
libwebp, libwebpmux and libwebpdemux . no
opus ................................. no
ffmpeg ............................... no
libvpx ............................... no
snappy ............................... no
glib ................................. yes
zlib ................................. yes
minizip .............................. no
libevent ............................. no
libxml2 and libxslt .................. no
lcms2 ................................ no
png .................................. yes
tiff ................................. no
jpeg ................................. no
libopenjpeg2 ......................... no
harfbuzz ............................. no
freetype ............................. yes
libpci ............................... no
Qt Protobuf:
Qt Core types support .................. no
Qt Gui types support ................... no
Well-known types support ............... no
Qt Protobuf tools:
Qt Protobuf generator .................. no
Qt GRPC:
gRPC support ........................... yes
Native gRPC support .................... no
Qt GRPC tools:
Qt GRPC generator ...................... no
Qt Opcua:
Open62541 .............................. yes
Unified Automation C++ SDK ............. no
Support for namespace 0 NodeId names ... yes
Namespace 0 NodeIds generator .......... no
Open62541 security support ............. yes
Support for global discovery server .... yes
Qt Remote Objects:
High Availability Manager (ham) ........ no
Qt Scxml:
ECMAScript data model for QtScxml ...... yes
Qt Sensors:
sensorfw ............................... no
sensorfw_enabled_with_cmake ............ no
Qt SerialBus:
Socket CAN ............................. yes
Socket CAN FD .......................... yes
SerialPort Support ..................... yes
Qt TextToSpeech:
Flite .................................. no
Flite with ALSA ........................ no
Speech Dispatcher ...................... no
Qt Virtualkeyboard:
Desktop integration .................... yes
Built-in layouts ....................... yes
Key navigation ......................... no
Retro style as default ................. no
Sensitive Debug ........................ no
Cerence ................................ no
Static Linking ....................... no
Handwriting .......................... no
Alphabetic ......................... no
CJK ................................ no
XT9 .................................. no
XT9 Debug .......................... no
XT9 9-key layouts .................. no
Bundle resources ..................... no
Handwriting ........................ no
XT9 ................................ no
Hunspell ............................... no
Using Hunspell copy from 3rdparty/ ... no
OpenWnn ................................ yes
MyScript ............................... no
Example HWR ............................ no
Language support enabled for:
Arabic ............................... yes
Bulgarian ............................ yes
Czech ................................ yes
Danish ............................... yes
German ............................... yes
Greek ................................ yes
English GB ........................... yes
English US ........................... yes
Spanish .............................. yes
Spanish Mexico ....................... yes
Estonian ............................. yes
Farsi ................................ yes
Finnish .............................. yes
French Canada ........................ yes
French France ........................ yes
Hebrew ............................... yes
Hindi ................................ yes
Croatian ............................. yes
Hungarian ............................ yes
Indonesian ........................... yes
Italian .............................. yes
Japanese ............................. yes
Korean ............................... yes
Malay ................................ yes
Norwegian ............................ yes
Dutch ................................ yes
Polish ............................... yes
Portuguese Brazil .................... yes
Portuguese Portugal .................. yes
Romanian ............................. yes
Russian .............................. yes
Slovak ............................... yes
Slovenian ............................ yes
Albanian ............................. yes
Serbian .............................. yes
Swedish .............................. yes
Thai ................................. yes
Turkish .............................. yes
Ukrainian ............................ yes
Vietnamese ........................... yes
Simplified Chinese ................... yes
Traditional Chinese .................. yes
HongKong Chinese ..................... no
Traditional chinese input methods:
Zhuyin ............................... yes
Cangjie .............................. yes
Note: Hunspell in Qt Virtual Keyboard is not enabled. Spelling correction will not be available.
WARNING: No backend for low level audio found.
WARNING: QtWebEngine won't be built. node.js version 14 or later is required.
WARNING: QtPdf won't be built. node.js version 14 or later is required.
WARNING: SensorFW support currently not enabled with cmake
--
Qt is now configured for building. Just run 'cmake --build . --parallel'
Once everything is built, you must run 'cmake --install .'
Qt will be installed into '/home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0'
To configure and build other Qt modules, you can use the following convenience script:
/home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/bin/qt-configure-module
If reconfiguration fails for some reason, try removing 'CMakeCache.txt' from the build directory
-- Configuring done
-- Generating done
-- Build files have been written to: /home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt
hwhsu1231 at vb-kubuntu:~/Repo/testing/qt-6.6.0/build-qt$ cmake --build . --target html_docs
[1127/1270] cd /home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtbase/src/xml && /usr/bin/cma...ors @/home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtbase/src/xml/.doc/Release/includes.txt
qt.qdoc: Cannot find index directory: "/home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/./doc"
[1128/1270] cd /home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtbase/src/concurrent && /usr/...ome/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtbase/src/concurrent/.doc/Release/includes.txt
qt.qdoc: Cannot find index directory: "/home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/./doc"
[1129/1270] cd /home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtbase/src/sql && /usr/bin/cma...ors @/home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtbase/src/sql/.doc/Release/includes.txt
qt.qdoc: Cannot find index directory: "/home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/./doc"
[1132/1270] cd /home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtbase/src/dbus && /usr/bin/cm...rs @/home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtbase/src/dbus/.doc/Release/includes.txt
qt.qdoc: Cannot find index directory: "/home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/./doc"
[1133/1270] cd /home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtbase/src/testlib && /usr/bin...@/home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtbase/src/testlib/.doc/Release/includes.txt
qt.qdoc: Cannot find index directory: "/home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/./doc"
[1136/1270] cd /home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtbase/src/opengl && /usr/bin/... @/home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtbase/src/opengl/.doc/Release/includes.txt
qt.qdoc: Cannot find index directory: "/home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/./doc"
[1143/1270] cd /home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtbase/src/network && /usr/bin...@/home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtbase/src/network/.doc/Release/includes.txt
qt.qdoc: Cannot find index directory: "/home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/./doc"
[1157/1270] cd /home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtbase/src/widgets && /usr/bin...@/home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtbase/src/widgets/.doc/Release/includes.txt
qt.qdoc: Cannot find index directory: "/home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/./doc"
[1164/1270] cd /home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtbase/src/gui && /usr/bin/cma...ors @/home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtbase/src/gui/.doc/Release/includes.txt
qt.qdoc: Cannot find index directory: "/home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/./doc"
[1182/1270] cd /home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtbase/src/corelib && /usr/bin...@/home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtbase/src/corelib/.doc/Release/includes.txt
qt.qdoc: Cannot find index directory: "/home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/./doc"
[1215/1270] cd /home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtbase/src/network && /usr/bin...@/home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtbase/src/network/.doc/Release/includes.txt
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/examples/network/rsslisting/doc/src/rsslisting.qdoc:36: (qdoc) warning: Cannot find file to quote from: serialization/rsslisting/main.cpp
[Searched directories: /home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtbase/doc/global/snippets /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/examples/network /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/examples/network/doc/images /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/examples/network/rsslisting/doc/images /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/network /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/network/doc/images /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/network/doc/snippets]
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/examples/network/rsslisting/doc/src/rsslisting.qdoc:36: (qdoc) warning: Command '\snippet (//! [0])' failed at end of file 'serialization/rsslisting/main.cpp'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/examples/network/rsslisting/doc/src/rsslisting.qdoc:40: (qdoc) warning: Cannot find file to quote from: serialization/rsslisting/rsslisting.h
[Searched directories: /home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtbase/doc/global/snippets /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/examples/network /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/examples/network/doc/images /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/examples/network/rsslisting/doc/images /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/network /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/network/doc/images /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/network/doc/snippets]
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/examples/network/rsslisting/doc/src/rsslisting.qdoc:40: (qdoc) warning: Command '\snippet (//! [0])' failed at end of file 'serialization/rsslisting/rsslisting.h'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/examples/network/rsslisting/doc/src/rsslisting.qdoc:56: (qdoc) warning: Cannot find file to quote from: serialization/rsslisting/rsslisting.cpp
[Searched directories: /home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtbase/doc/global/snippets /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/examples/network /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/examples/network/doc/images /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/examples/network/rsslisting/doc/images /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/network /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/network/doc/images /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/network/doc/snippets]
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/examples/network/rsslisting/doc/src/rsslisting.qdoc:56: (qdoc) warning: Command '\snippet (//! [setup])' failed at end of file 'serialization/rsslisting/rsslisting.cpp'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/examples/network/rsslisting/doc/src/rsslisting.qdoc:74: (qdoc) warning: Cannot find file to quote from: serialization/rsslisting/rsslisting.cpp
[Searched directories: /home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtbase/doc/global/snippets /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/examples/network /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/examples/network/doc/images /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/examples/network/rsslisting/doc/images /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/network /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/network/doc/images /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/network/doc/snippets]
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/examples/network/rsslisting/doc/src/rsslisting.qdoc:74: (qdoc) warning: Command '\snippet (//! [slots])' failed at end of file 'serialization/rsslisting/rsslisting.cpp'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/examples/network/rsslisting/doc/src/rsslisting.qdoc:99: (qdoc) warning: Cannot find file to quote from: serialization/rsslisting/rsslisting.cpp
[Searched directories: /home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtbase/doc/global/snippets /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/examples/network /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/examples/network/doc/images /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/examples/network/rsslisting/doc/images /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/network /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/network/doc/images /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/network/doc/snippets]
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/examples/network/rsslisting/doc/src/rsslisting.qdoc:99: (qdoc) warning: Command '\snippet (//! [get])' failed at end of file 'serialization/rsslisting/rsslisting.cpp'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/examples/network/rsslisting/doc/src/rsslisting.qdoc:111: (qdoc) warning: Cannot find file to quote from: serialization/rsslisting/rsslisting.cpp
[Searched directories: /home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtbase/doc/global/snippets /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/examples/network /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/examples/network/doc/images /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/examples/network/rsslisting/doc/images /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/network /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/network/doc/images /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/network/doc/snippets]
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/examples/network/rsslisting/doc/src/rsslisting.qdoc:111: (qdoc) warning: Command '\snippet (//! [parse])' failed at end of file 'serialization/rsslisting/rsslisting.cpp'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/examples/network/rsslisting/doc/src/rsslisting.qdoc:4: (qdoc) warning: Cannot find project file for example 'serialization/rsslisting'
[Example directories: /home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtbase/doc/global/snippets /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/examples/network /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/network /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/network/doc/snippets]
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/examples/network/rsslisting/doc/src/rsslisting.qdoc:4: (qdoc) warning: Can't link to 'QApplication'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/examples/network/rsslisting/doc/src/rsslisting.qdoc:4: (qdoc) warning: Can't link to 'QLineEdit'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/examples/network/rsslisting/doc/src/rsslisting.qdoc:4: (qdoc) warning: Can't link to 'QTreeWidget'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/examples/network/rsslisting/doc/src/rsslisting.qdoc:4: (qdoc) warning: serialization/rsslisting: Example has no project file
[1217/1270] cd /home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtdoc/doc && /usr/bin/cmake -E...qt/./doc @/home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtdoc/doc/.doc/Release/includes.txt
qt.qdoc: Configuration file for "QtDoc" has depends = *; loading all 71 index files found
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtdoc/doc/src/frameworks-technologies/threads.qdoc:520: (qdoc) warning: Can't link to 'Mandelbrot Example'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtdoc/doc/src/frameworks-technologies/threads.qdoc:520: (qdoc) warning: Can't link to 'Mandelbrot Example'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtdoc/doc/src/getting-started/installation.qdoc:4: (qdoc) warning: Can't link to 'Qt WebEngine Platform Notes'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtdoc/doc/src/internationalization/l10n.qdoc:4: (qdoc) warning: Can't link to 'Qt WebEngine'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtdoc/doc/src/legal/licensechanges.qdoc:5: (qdoc) warning: Can't link to 'xdg-foreign-unstable-v2'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtdoc/doc/src/legal/licensechanges.qdoc:5: (qdoc) warning: Can't link to 'fractional-scale-v1'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtdoc/doc/src/legal/licensechanges.qdoc:5: (qdoc) warning: Can't link to 'wayland-text-input-unstable-v1'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtdoc/doc/src/legal/licensechanges.qdoc:5: (qdoc) warning: Can't link to 'wayland-protocol'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtdoc/doc/src/legal/licensechanges.qdoc:5: (qdoc) warning: Can't link to 'wayland-text-input-unstable-v4-wip'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtdoc/doc/src/legal/licensechanges.qdoc:5: (qdoc) warning: Can't link to 'wayland-xdg-activation'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtdoc/doc/src/legal/licensechanges.qdoc:5: (qdoc) warning: Can't link to 'presentation-time.xml'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtdoc/doc/src/legal/licensechanges.qdoc:5: (qdoc) warning: Can't link to 'wayland-pointer-gestures-protocol'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtdoc/doc/src/mobile.qdoc:4: (qdoc) warning: Can't link to 'Qt for Android Examples'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtdoc/doc/src/overviews.qdoc:4: (qdoc) warning: '\generatelist explanations-positioning' no such group
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtdoc/doc/src/platforms/emb-linux.qdoc:4: (qdoc) warning: Can't link to 'Qt Wayland Compositor'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtdoc/doc/src/platforms/macos.qdoc:248: (qdoc) warning: Can't link to 'Qt WebEngine'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtdoc/doc/src/platforms/macos.qdoc:248: (qdoc) warning: Can't link to 'Qt PDF'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtdoc/doc/src/qtmodules.qdoc:4: (qdoc) warning: Can't link to 'Qt PDF'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtdoc/doc/src/qtmodules.qdoc:4: (qdoc) warning: Can't link to 'Qt WebEngine'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtdoc/doc/src/qtmodules.qdoc:4: (qdoc) warning: Can't link to 'Qt Wayland Compositor'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtdoc/doc/src/wayland-and-qt.qdoc:4: (qdoc) warning: Can't link to 'Qt Wayland Compositor'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtdoc/doc/src/wayland-and-qt.qdoc:4: (qdoc) warning: Can't link to 'Qt Wayland Compositor'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtdoc/doc/src/wayland-and-qt.qdoc:4: (qdoc) warning: Can't link to 'Qt Wayland Compositor'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtdoc/doc/src/wayland-and-qt.qdoc:4: (qdoc) warning: Can't link to 'Qt Wayland Compositor'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtdoc/doc/src/whatsnew/whatsnew62.qdoc:4: (qdoc) warning: Can't link to 'Qt WebEngine'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtdoc/doc/src/whatsnew/whatsnew63.qdoc:4: (qdoc) warning: Can't link to 'Qt PDF'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtdoc/doc/src/whatsnew/whatsnew63.qdoc:4: (qdoc) warning: Can't link to 'qt_add_webengine_dictionary'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtdoc/doc/src/whatsnew/whatsnew63.qdoc:4: (qdoc) warning: Can't link to 'Custom Shell'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtdoc/doc/src/whatsnew/whatsnew63.qdoc:4: (qdoc) warning: Can't link to 'QtShell Compositor'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtdoc/doc/src/whatsnew/whatsnew63.qdoc:4: (qdoc) warning: Can't link to 'PresentationTime'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtdoc/examples/demos/documentviewer/doc/src/documentviewer.qdoc:4: (qdoc) warning: Can't link to 'PDF Viewer Widget Example'
[1222/1270] cd /home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtdeclarative/src/qmlcompiler ...u1231/Repo/testing/qt-6.6.0/build-qt/qtdeclarative/src/qmlcompiler/.doc/Release/includes.txt
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtdeclarative/src/qmlcompiler/qqmlsa.cpp:925: (qdoc) warning: Can't link to 'global Qt object'
[1229/1270] cd /home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtdeclarative/src/qml && /usr/...ome/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtdeclarative/src/qml/.doc/Release/includes.txt
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtdeclarative/src/qml/doc/src/qmlfunctions.qdoc:349: (qdoc) warning: Can't link to 'QML_ADDED_IN_VERSION'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtdeclarative/src/qml/doc/src/qmlfunctions.qdoc:349: (qdoc) warning: Can't link to 'QML_REMOVED_IN_VERSION'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtdeclarative/src/qml/doc/src/qmlfunctions.qdoc:451: (qdoc) warning: Can't link to 'Extension Objects'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtdeclarative/src/qml/doc/src/cppintegration/topic.qdoc:4: (qdoc) warning: Can't link to 'qtqml-cpp-integration-exposecppstate.html'
[1230/1270] cd /home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtbase/src/widgets && /usr/bin...@/home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtbase/src/widgets/.doc/Release/includes.txt
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/examples/widgets/doc/src/lineedits.qdoc:7: (qdoc) warning: Unknown command '\examplecateogry'
[1237/1270] cd /home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtbase/src/gui && /usr/bin/cma...doc @/home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtbase/src/gui/.doc/Release/includes.txt
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/gui/doc/src/dnd.qdoc:339: (qdoc) warning: Cannot find file to quote from: ../widgets/widgets/charactermap/mainwindow.cpp
[Searched directories: /home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtbase/doc/global/snippets /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/doc/src/images /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/examples/gui /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/examples/gui/doc/images /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/examples/vulkan /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/examples/vulkan/doc/images /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/gui/doc/images /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/gui/doc/snippets /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/widgets/doc/snippets]
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/gui/doc/src/dnd.qdoc:339: (qdoc) warning: Command '\snippet (//! [11])' failed at end of file '../widgets/widgets/charactermap/mainwindow.cpp'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/gui/painting/qrgbafloat.qdoc:83: (qdoc) warning: clang couldn't find function when parsing \fn template<typename F> void QRgbaFloat<F>::setRed(QRgbaFloat::FastType red)
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/gui/painting/qrgbafloat.qdoc:99: (qdoc) warning: clang couldn't find function when parsing \fn template<typename F> void QRgbaFloat<F>::setGreen(QRgbaFloat::FastType green)
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/gui/painting/qrgbafloat.qdoc:115: (qdoc) warning: clang couldn't find function when parsing \fn template<typename F> void QRgbaFloat<F>::setBlue(QRgbaFloat::FastType blue)
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/gui/painting/qrgbafloat.qdoc:131: (qdoc) warning: clang couldn't find function when parsing \fn template<typename F> void QRgbaFloat<F>::setAlpha(QRgbaFloat::FastType alpha)
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/gui/rhi/qrhivulkan.cpp:314: (qdoc) warning: Cannot tie this documentation to anything
[qdoc found a /*! ... */ comment, but there was no topic command (e.g., '\fn', '\page') in the comment and no function definition following the comment.]
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/gui/rhi/qrhivulkan.cpp:328: (qdoc) warning: Cannot tie this documentation to anything
[qdoc found a /*! ... */ comment, but there was no topic command (e.g., '\fn', '\page') in the comment and no function definition following the comment.]
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/gui/image/qicon.cpp:1150: (qdoc) warning: Can't link to 'themeName()'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/gui/image/qicon.cpp:1150: (qdoc) warning: Can't link to 'fallbackIconTheme()'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/gui/image/qicon.cpp:1236: (qdoc) warning: Can't link to 'themeName()'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/gui/image/qicon.cpp:1323: (qdoc) warning: Can't link to 'themeName()'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/gui/image/qicon.cpp:1323: (qdoc) warning: Can't link to 'fallbackIconTheme()'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/gui/image/qicon.cpp:1323: (qdoc) warning: Can't link to 'fallbackIconTheme()'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/gui/image/qicon.cpp:1356: (qdoc) warning: Can't link to 'setThemeName()'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/gui/image/qicon.cpp:1170: (qdoc) warning: Can't link to 'themeName()'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/gui/image/qicon.cpp:1170: (qdoc) warning: Can't link to 'fallbackIconTheme()'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/gui/image/qicon.cpp:1255: (qdoc) warning: Can't link to 'themeName()'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/gui/image/qicon.cpp:1255: (qdoc) warning: Can't link to 'themeName()'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/gui/image/qicon.cpp:1255: (qdoc) warning: Can't link to 'themeName()'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/gui/image/qicon.cpp:1120: (qdoc) warning: Can't link to 'setThemeName()'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/gui/image/qicon.cpp:1135: (qdoc) warning: Can't link to 'setThemeName()'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/gui/text/qtextdocument.cpp:180: (qdoc) warning: Can't link to 'Text Object Example'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/gui/text/qabstracttextdocumentlayout.cpp:50: (qdoc) warning: Can't link to 'Text Object Example'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/gui/painting/qrgbafloat.qdoc:123: (qdoc) warning: Can't link to 'setAlpha()'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/gui/painting/qrgbafloat.qdoc:107: (qdoc) warning: Can't link to 'setBlue()'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/gui/painting/qrgbafloat.qdoc:155: (qdoc) warning: Can't link to 'setBlue()'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/gui/painting/qrgbafloat.qdoc:91: (qdoc) warning: Can't link to 'setGreen()'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/gui/painting/qrgbafloat.qdoc:147: (qdoc) warning: Can't link to 'setGreen()'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/gui/painting/qrgbafloat.qdoc:75: (qdoc) warning: Can't link to 'setRed()'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/gui/painting/qrgbafloat.qdoc:139: (qdoc) warning: Can't link to 'setRed()'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/gui/text/qtextobject.cpp:22: (qdoc) warning: Can't link to 'Text Object Example'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/gui/doc/src/dnd.qdoc:4: (qdoc) warning: Can't link to 'draganddrop/fridgemagnets'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/gui/doc/src/dnd.qdoc:4: (qdoc) warning: Can't link to 'draganddrop/puzzle'
[1238/1270] cd /home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtconnectivity/src/bluetooth &...su1231/Repo/testing/qt-6.6.0/build-qt/qtconnectivity/src/bluetooth/.doc/Release/includes.txt
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtconnectivity/src/bluetooth/qbluetoothaddress.cpp:65: (qdoc) warning: clang couldn't find function when parsing \fn QBluetoothAddress::qHash(QBluetoothAddress key, size_t seed)
[1239/1270] cd /home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtdeclarative/src/quickcontrol...231/Repo/testing/qt-6.6.0/build-qt/qtdeclarative/src/quickcontrols/.doc/Release/includes.txt
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtdeclarative/src/quickcontrols/doc/src/qtquickcontrols-icons.qdoc:4: (qdoc) warning: Can't link to 'QIcon::setThemeName()'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtdeclarative/src/quicktemplates/qquickpane.cpp:14: (qdoc) warning: Can't link to 'wheelEnabled'
[1244/1270] cd /home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtdoc/doc/src/cmake && /usr/bi.../home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtdoc/doc/src/cmake/.doc/Release/includes.txt
QDoc: warning: "QtCMake" Cannot locate index file for dependency "qtinterfaceframework"
QDoc: warning: "QtCMake" Cannot locate index file for dependency "qtwebengine"
[1245/1270] cd /home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtdoc/doc/src/platformintegrat...1/Repo/testing/qt-6.6.0/build-qt/qtdoc/doc/src/platformintegration/.doc/Release/includes.txt
QDoc: warning: "QtPlatformIntegration" Cannot locate index file for dependency "qtwaylandcompositor"
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtdoc/doc/src/platformintegration/qpa.qdoc:4: (qdoc) warning: Can't link to 'Qt Wayland Compositor'
[1246/1270] cd /home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtwebchannel/src/webchannel &&...hsu1231/Repo/testing/qt-6.6.0/build-qt/qtwebchannel/src/webchannel/.doc/Release/includes.txt
QDoc: warning: "QtWebChannel" Cannot locate index file for dependency "qtwebengine"
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtwebchannel/src/webchannel/doc/src/index.qdoc:4: (qdoc) warning: Can't link to 'Qt WebEngine'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtwebchannel/src/webchannel/doc/src/javascript.qdoc:4: (qdoc) warning: Can't link to 'Qt WebEngine'
[1250/1270] cd /home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtgrpc/src/grpc && /usr/bin/cm...oc @/home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtgrpc/src/grpc/.doc/Release/includes.txt
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtgrpc/examples/grpc/doc/src/chat.qdoc:4: (qdoc) warning: Can't link to 'QGrpcMetadata'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtgrpc/examples/grpc/doc/src/chat.qdoc:4: (qdoc) warning: Can't link to 'QGrpcMetadata'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtgrpc/src/tools/doc/src/qtprotobufgen.qdoc:4: (qdoc) warning: Can't link to 'qtqml-modules-identifiedmodules.html'
[1251/1270] cd /home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtmqtt/src/mqtt && /usr/bin/cm...oc @/home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtmqtt/src/mqtt/.doc/Release/includes.txt
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtmqtt/examples/mqtt/doc/quicksubscription.qdoc:51: (qdoc) warning: Command '\printuntil' failed at end of file '/home/hwhsu1231/Repo/testing/qt-6.6.0/qtmqtt/examples/mqtt/quicksubscription/main.cpp'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtmqtt/examples/mqtt/doc/quicksubscription.qdoc:60: (qdoc) warning: Cannot find file to quote from: quicksubscription/main.qml
[Searched directories: /home/hwhsu1231/Repo/testing/qt-6.6.0/qtmqtt/examples/mqtt /home/hwhsu1231/Repo/testing/qt-6.6.0/qtmqtt/examples/mqtt/doc/images /home/hwhsu1231/Repo/testing/qt-6.6.0/qtmqtt/src/mqtt/doc/images]
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtmqtt/examples/mqtt/doc/quicksubscription.qdoc:62: (qdoc) warning: Command '\skipto' failed at end of file 'quicksubscription/main.qml'
[1255/1270] cd /home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtbase/src/corelib && /usr/bin...@/home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtbase/src/corelib/.doc/Release/includes.txt
qt.qdoc: Configuration file for "QtCore" has depends = *; loading all 71 index files found
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/corelib/global/qfloat16.cpp:366: (qdoc) warning: Invalid '\relates' (already a member of 'qfloat16')
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/corelib/itemmodels/qabstractitemmodel.cpp:1743: (qdoc) warning: Cannot find file to quote from: ../widgets/itemviews/simpledommodel/dommodel.cpp
[Searched directories: /home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtbase/doc/global/snippets /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/examples/corelib /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/examples/corelib/bindableproperties/doc/images /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/examples/corelib/ipc/doc/images /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/examples/corelib/mimetypes/doc/images /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/examples/corelib/platform/androidnotifier/doc/images /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/examples/corelib/serialization/cbordump/doc/images /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/examples/corelib/serialization/convert/doc/images /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/examples/corelib/serialization/streambookmarks/doc/images /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/examples/corelib/threads/doc/images /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/examples/network/dnslookup /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/examples/widgets/tools /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/corelib /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/corelib/doc/images /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/corelib/doc/snippets /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/tools/androiddeployqt /home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/tests/auto/corelib/thread/qpromise]
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/corelib/itemmodels/qabstractitemmodel.cpp:1743: (qdoc) warning: Command '\snippet (//! [2])' failed at end of file '../widgets/itemviews/simpledommodel/dommodel.cpp'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/corelib/tools/qset.qdoc:890: (qdoc) warning: clang couldn't find function when parsing \fn template <class T> template <class Predicate> qsizetype QSet<T>::removeIf(Predicate pred)
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/corelib/global/qnamespace.qdoc:939: (qdoc) warning: Can't link to 'widgets/styles'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/corelib/kernel/qbasictimer.cpp:10: (qdoc) warning: Can't link to 'widgets/tetrix'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/corelib/io/qurl.cpp:2970: (qdoc) warning: Undocumented parameter 'parsingMode' in QUrl::fromEncoded()
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/corelib/io/qurl.cpp:2970: (qdoc) warning: No such parameter 'mode' in QUrl::fromEncoded()
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/corelib/io/qsettings.cpp:1873: (qdoc) warning: Can't link to 'mainwindows/application'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/corelib/doc/src/resource-system.qdoc:4: (qdoc) warning: Can't link to 'mainwindows/mainwindow'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtbase/src/corelib/doc/src/timers.qdoc:4: (qdoc) warning: Can't link to 'widgets/tetrix'
[1259/1270] cd /home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtopcua/src/opcua && /usr/bin/... @/home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtopcua/src/opcua/.doc/Release/includes.txt
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtopcua/src/opcua/client/qopcuaconnectionsettings.cpp:89: (qdoc) warning: Cannot tie this documentation to anything
[qdoc found a /*! ... */ comment, but there was no topic command (e.g., '\fn', '\page') in the comment and no function definition following the comment.]
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtopcua/src/opcua/client/qopcuaconnectionsettings.cpp:102: (qdoc) warning: Can't link to 'rhs'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtopcua/src/opcua/client/qopcuaconnectionsettings.cpp:102: (qdoc) warning: Undocumented parameter 'rhs' in QOpcUaConnectionSettings::operator!=()
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtopcua/src/opcua/client/qopcuaconnectionsettings.cpp:102: (qdoc) warning: No such parameter 'lhs' in QOpcUaConnectionSettings::operator!=()
[1263/1270] cd /home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtwebview/src/webview && /usr/...ome/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtwebview/src/webview/.doc/Release/includes.txt
QDoc: warning: "QtWebView" Cannot locate index file for dependency "qtwebengine"
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtwebview/src/webview/doc/src/qtwebview-overview.qdoc:5: (qdoc) warning: Can't link to 'Qt WebEngine'
[1264/1270] cd /home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtvirtualkeyboard/src/virtualk...po/testing/qt-6.6.0/build-qt/qtvirtualkeyboard/src/virtualkeyboard/.doc/Release/includes.txt
QDoc: warning: "QtVirtualKeyboard" Cannot locate index file for dependency "qtwaylandcompositor"
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtvirtualkeyboard/src/virtualkeyboard/doc/src/deployment-guide.qdoc:4: (qdoc) warning: Can't link to 'Pure QML'
[1267/1270] cd /home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtlocation/src/location && /us...e/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtlocation/src/location/.doc/Release/includes.txt
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtlocation/src/location/doc/src/qtlocation.qdoc:41: (qdoc) warning: Can't link to 'Build with CMake'
[1270/1270] cd /home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtdeclarative/src/quick && /us...e/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtdeclarative/src/quick/.doc/Release/includes.txt
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtdeclarative/src/quick/handlers/qquickpointerhandler.cpp:881: (qdoc) warning: Cannot tie this documentation to anything
[qdoc found a /*! ... */ comment, but there was no topic command (e.g., '\fn', '\page') in the comment and no function definition following the comment.]
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtdeclarative/src/quick/items/qquickrendercontrol.cpp:632: (qdoc) warning: Can't link to 'QRhi::'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtdeclarative/src/quick/items/qquickrendercontrol.cpp:632: (qdoc) warning: Can't link to 'QRhi::'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtdeclarative/examples/quick/scenegraph/customrendernode/doc/src/customrendernode.qdoc:4: (qdoc) warning: Can't link to 'QQuickItem::'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtdeclarative/examples/quick/scenegraph/customrendernode/doc/src/customrendernode.qdoc:4: (qdoc) warning: Can't link to 'QQuickItem::'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtdeclarative/examples/quick/scenegraph/customrendernode/doc/src/customrendernode.qdoc:4: (qdoc) warning: Can't link to 'QSGRenderNode::'
/home/hwhsu1231/Repo/testing/qt-6.6.0/qtdeclarative/src/quick/items/qquicklistview.cpp:2020: (qdoc) warning: Can't link to 'ListView::cacheBuffer.'
hwhsu1231 at vb-kubuntu:~/Repo/testing/qt-6.6.0/build-qt$ cmake --install .
-- Install configuration: "Release"
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6BuildInternals/Qt6BuildInternalsConfig.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6BuildInternals/Qt6BuildInternalsConfigVersion.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6BuildInternals/Qt6BuildInternalsConfigVersionImpl.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6BuildInternals/QtBuildInternalsExtra.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6BuildInternals/QtStandaloneTestTemplateProject
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6BuildInternals/QtStandaloneTestTemplateProject/CMakeLists.txt
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6BuildInternals/QtStandaloneTestTemplateProject/Main.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/qt.toolchain.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/bin/qt-cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/bin/qt-cmake-create
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./libexec/qt-cmake-private
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/bin/qt-configure-module
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./libexec/qt-cmake-standalone-test
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./libexec/qt-cmake-private-install.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./libexec/qt-internal-configure-tests
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./libexec/android_emulator_launcher.sh
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/mkspecs/qconfig.pri
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/mkspecs/qmodule.pri
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/pkgconfig/Qt6Platform.pc
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/Qt6Targets.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/Qt6VersionlessTargets.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/Qt6Config.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/Qt6ConfigExtras.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/Qt6ConfigVersion.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/Qt6ConfigVersionImpl.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/ModuleDescription.json.in
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/PkgConfigLibrary.pc.in
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/Qt3rdPartyLibraryConfig.cmake.in
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/Qt3rdPartyLibraryHelpers.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtAndroidHelpers.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtAppHelpers.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtAutogenHelpers.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtBaseTopLevelHelpers.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtBuild.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtBuildInformation.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtCMakeHelpers.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtCMakeVersionHelpers.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtCMakePackageVersionFile.cmake.in
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtCompilerFlags.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtCompilerOptimization.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtConfigDependencies.cmake.in
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtConfigureTimeExecutableCMakeLists.txt.in
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtDeferredDependenciesHelpers.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtDbusHelpers.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtDocsHelpers.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtExecutableHelpers.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtFileConfigure.txt.in
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtFindPackageHelpers.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtFindWrapConfigExtra.cmake.in
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtFindWrapHelper.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtFinishPkgConfigFile.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtFinishPrlFile.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtFlagHandlingHelpers.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtFrameworkHelpers.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtGenerateExtPri.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtGenerateLibHelpers.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtGenerateLibPri.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtGenerateVersionScript.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtGlobalStateHelpers.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtHeadersClean.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtInstallHelpers.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtJavaHelpers.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtLalrHelpers.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtModuleConfig.cmake.in
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtModuleDependencies.cmake.in
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtModuleHeadersCheck.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtModuleHelpers.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtModuleToolsConfig.cmake.in
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtModuleToolsDependencies.cmake.in
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtModuleToolsVersionlessTargets.cmake.in
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtNoLinkTargetHelpers.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtPkgConfigHelpers.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtPlatformAndroid.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtPlatformSupport.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtPluginConfig.cmake.in
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtPluginDependencies.cmake.in
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtPluginHelpers.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtPlugins.cmake.in
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtPostProcess.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtPostProcessHelpers.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtPrecompiledHeadersHelpers.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtUnityBuildHelpers.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtPriHelpers.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtPrlHelpers.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtPlatformTargetHelpers.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtProcessConfigureArgs.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtQmakeHelpers.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtResourceHelpers.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtRpathHelpers.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtSanitizerHelpers.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtScopeFinalizerHelpers.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtSeparateDebugInfo.Info.plist.in
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtSeparateDebugInfo.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtSetup.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtSimdHelpers.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtSingleRepoTargetSetBuildHelpers.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtStandaloneTestsConfig.cmake.in
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtSyncQtHelpers.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtTargetHelpers.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtTestHelpers.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtToolchainHelpers.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtToolHelpers.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtWasmHelpers.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtWrapperScriptHelpers.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtWriteArgsFile.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/modulecppexports.h.in
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/modulecppexports_p.h.in
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/qbatchedtestrunner.in.cpp
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/platforms
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/platforms/FindIntegrityPlatformGraphics.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/platforms/Platform
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/platforms/Platform/Integrity.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/config.tests/static_link_order
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/config.tests/static_link_order/objlib.cpp
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/config.tests/static_link_order/staticlib2.cpp
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/config.tests/static_link_order/staticlib1.cpp
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/config.tests/static_link_order/CMakeLists.txt
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/config.tests/static_link_order/main.cpp
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/config.tests/binary_for_strip
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/config.tests/binary_for_strip/CMakeLists.txt
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/config.tests/binary_for_strip/lib1.cpp
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/libexec/qt-internal-strip.in
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/libexec/qt-internal-strip.bat.in
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/libexec/qt-internal-ninja.in
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/libexec/qt-internal-ninja.bat.in
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtCopyFileIfDifferent.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtFeature.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtFeatureCommon.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtInitProject.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtPublicAppleHelpers.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtPublicCMakeHelpers.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtPublicCMakeVersionHelpers.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtPublicFinalizerHelpers.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtPublicPluginHelpers.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtPublicTargetHelpers.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtPublicTestHelpers.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtPublicToolHelpers.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtPublicWalkLibsHelpers.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtPublicFindPackageHelpers.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtPublicDependencyHelpers.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/QtPublicWasmToolchainHelpers.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/3rdparty
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/3rdparty/extra-cmake-modules
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/3rdparty/extra-cmake-modules/find-modules
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/3rdparty/extra-cmake-modules/find-modules/FindX11_XCB.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/3rdparty/extra-cmake-modules/find-modules/FindGLIB2.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/3rdparty/extra-cmake-modules/find-modules/FindXCB.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/3rdparty/extra-cmake-modules/find-modules/ECMFindModuleHelpersStub.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/3rdparty/extra-cmake-modules/find-modules/FindEGL.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/3rdparty/extra-cmake-modules/find-modules/FindWayland.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/3rdparty/extra-cmake-modules/find-modules/FindWaylandScanner.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/3rdparty/extra-cmake-modules/COPYING-CMAKE-SCRIPTS
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/3rdparty/extra-cmake-modules/qt_attribution.json
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/3rdparty/extra-cmake-modules/modules
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/3rdparty/extra-cmake-modules/modules/ECMEnableSanitizers.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/3rdparty/extra-cmake-modules/modules/ECMFindModuleHelpers.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/3rdparty/kwin
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/3rdparty/kwin/FindXKB.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/3rdparty/kwin/COPYING-CMAKE-SCRIPTS
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/3rdparty/kwin/qt_attribution.json
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/3rdparty/kwin/FindLibdrm.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/3rdparty/kwin/FindLibinput.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/3rdparty/kwin/Findgbm.cmake
-- Up-to-date: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/FindGTK3.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/FindWrapSystemZLIB.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/FindXKB_COMMON_X11.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/FindWrapSystemJpeg.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/FindWrapSystemPCRE2.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/FindSlog2.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/FindATSPI2.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/FindPPS.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/FindLibudev.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/FindWrapOpenSSLHeaders.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/FindLibproxy.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/FindWrapDBus1.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/FindLibsystemd.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/FindPostgreSQL.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/FindWrapFreetype.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/FindWrapSystemFreetype.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/FindInterbase.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/FindWrapVulkanHeaders.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/FindWrapPCRE2.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/FindWrapBrotli.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/FindOracle.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/FindWrapOpenGL.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/FindMySQL.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/FindTslib.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/FindDirectFB.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/FindGSSAPI.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/FindWrapVulkan.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/FindWrapHarfbuzz.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/FindWrapSystemHarfbuzz.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/FindMtdev.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/FindWrapSystemPNG.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/FindWrapSystemMd4c.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/FindWrapJpeg.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/FindWrapResolv.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/FindMimer.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/FindWrapPNG.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/FindWrapSystemDoubleConversion.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/FindWrapAtomic.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/FindWrapRt.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/FindDB2.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/FindWrapBacktrace.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/FindXRender.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/FindWrapOpenSSL.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/FindWrapZSTD.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/FindWrapZLIB.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/FindLibb2.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/lib/cmake/Qt6/FindGLESv2.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./libexec/ensure_pro_file.cmake
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./libexec/qt-testrunner.py
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./libexec/sanitizer-testrunner.py
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/macros.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/qt-html-templates-online.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/qt-module-defaults-online-commercial.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/config.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/qt-html-templates-offline.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/html-footer.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/html-config.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/compat.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/includes-online
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/includes-online/search.qdoc
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/qt-module-defaults-offline.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/html-footer-online.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template/images
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template/images/btn_next.png
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template/images/arrow_bc.png
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template/images/bg_ul_blank.png
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template/images/arrow_down.png
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template/images/page_bg.png
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template/images/Qt-footer_shadow.png
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template/images/bg_l.png
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template/images/bgrContent.png
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template/images/Qt-logo.png
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template/images/feedbackground.png
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template/images/bullet_dn.png
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template/images/bullet_up.png
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template/images/logo.png
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template/images/horBar.png
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template/images/page.png
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template/images/ico_note_attention.png
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template/images/arrow.png
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template/images/header_bg.png
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template/images/spinner.gif
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template/images/bg_r.png
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template/images/bg_ll_blank.png
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template/images/Qt-dark_gradient.png
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template/images/ico_note.png
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template/images/Qt-gradient.png
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template/images/bullet_gt.png
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template/images/bg_l_blank.png
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template/images/btn_prev.png
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template/images/Qt-footer-bg.jpg
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template/images/blu_dot.png
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template/images/sprites-combined.png
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template/images/home.png
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template/images/box_bg.png
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template/images/ico_out.png
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template/images/breadcrumb.png
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template/images/bullet_sq.png
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template/images/Qt-header-bg.jpg
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template/scripts
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template/scripts/extras.js
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template/scripts/main.js
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template/style
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template/style/offline-simple.css
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template/style/htmltabs.css
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template/style/offline.css
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template/style/doc_search.png
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template/style/icomoon.eot
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template/style/gsc.css
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template/style/offline-dark.css
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template/style/cookiebar-x.png
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template/style/icomoon.svg
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template/style/icomoon.woff
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template/style/icomoon.ttf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template/style/tech_preview.svg
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template/style/list_arrow.png
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template/style/theqtcompany.png
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template/style/online.css
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template/style/cookie-confirm.css
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/template/style/list_expand.png
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/html-header-online.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/qt-html-templates-offline-simple.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/macros-online.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/externalsites
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/externalsites/qtcreator.qdoc
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/externalsites/qt-webpages.qdoc
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/externalsites/rfc.qdoc
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/externalsites/qtdesignstudio.qdoc
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/externalsites/external-resources.qdoc
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/externalsites.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/qt-cpp-defines.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/htmltabs.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/qt-module-defaults.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/manifest-meta.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/snippets
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/snippets/code
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/snippets/code/doc_src_port_from_qregexp.cpp
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/includes
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/includes/examples-run.qdocinc
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/includes/standardpath
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/includes/standardpath/functiondocs.qdocinc
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/includes/module-use.qdocinc
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/includes/corelib
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/includes/corelib/port-from-qregexp.qdocinc
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/includes/cli-build-cmake.qdocinc
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/fileextensions.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/qt-module-defaults-online.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/global/html-header-offline.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/config
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/config/exampleurl-qtvirtualkeyboard.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/config/exampleurl-qtpurchasing.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/config/exampleurl-qtremoteobjects.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/config/exampleurl-qtquickcontrols.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/config/exampleurl-qtandroidextras.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/config/exampleurl-qtgamepad.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/config/exampleurl-qtquickcontrols2.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/config/exampleurl-qt3d.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/config/exampleurl-qttools.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/config/exampleurl-qtwebview.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/config/exampleurl-qtdeclarative.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/config/exampleurl-qtx11extras.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/config/exampleurl-qtgraphicaleffects.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/config/exampleurl-qtspeech.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/config/exampleurl-qtwayland.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/config/exampleurl-qtwebengine.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/config/exampleurl-qtmultimedia.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/config/exampleurl-qtconnectivity.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/config/exampleurl-qtwebsockets.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/config/exampleurl-qtscxml.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/config/exampleurl-qtcharts.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/config/exampleurl-qtdatavis3d.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/config/exampleurl-qtpositioning.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/config/exampleurl-qtlocation.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/config/exampleurl-qtnetworkauth.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/config/exampleurl-qtbase.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/config/exampleurl-qtxmlpatterns.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/config/exampleurl-qtwinextras.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/config/exampleurl-qtscript.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/config/exampleurl-qtdoc.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/config/exampleurl-qtlottie.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/config/exampleurl-qtmacextras.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/config/exampleurl-qtserialbus.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/config/exampleurl-qtsensors.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/config/exampleurl-qtwebchannel.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/config/exampleurl-qtserialport.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/config/exampleurl-qtimageformats.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/config/exampleurl-qtactiveqt.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./doc/config/exampleurl-qtsvg.qdocconf
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./libexec/syncqt
-- Set runtime path of "/home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./libexec/syncqt" to "$ORIGIN/../lib"
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./libexec/moc
-- Set runtime path of "/home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./libexec/moc" to "$ORIGIN/../lib"
-- Installing: /home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./libexec/rcc
-- Set runtime path of "/home/hwhsu1231/Repo/testing/qt-6.6.0/html/6.6.0/./libexec/rcc" to "$ORIGIN/../lib"
CMake Error at qtbase/src/tools/tracepointgen/cmake_install.cmake:53 (file):
file INSTALL cannot find
"/home/hwhsu1231/Repo/testing/qt-6.6.0/build-qt/qtbase/libexec/tracepointgen":
No such file or directory.
Call Stack (most recent call first):
qtbase/src/cmake_install.cmake:67 (include)
qtbase/cmake_install.cmake:303 (include)
cmake_install.cmake:47 (include)
hwhsu1231 at vb-kubuntu:~/Repo/testing/qt-6.6.0/build-qt$
More information about the Development
mailing list