6.6.2 fails to build due to missing qlitehtml in qttools
-
Hi all,
I'm trying to build 6.6.2 from git on Rocky Linux 8. After pulling down the code, one of the first things I notice is that the qttools fails to configure because the qlitehtml directory has no files in it. I can cd into it, but it's empty. I believe it's the same thing this user was referencing in this thread.
https://forum.qt.io/topic/152669/unable-to-compile-qt-because-of-missing-litehtml
If I got off and find qlitehtml and put it in there the build continues as normal.
Here's what I see when I run git log
[rockylinux@rocky8 qlitehtml]$ git log commit 3fae450efa5aa65affcd5bf4300a2082aad51f7b (HEAD -> 6.6.2, tag: v6.6.2, origin/6.6.2) Author: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org> Date: Fri Feb 9 22:03:07 2024 +0000 Update dependencies on '6.6.2' in qt/qttools Change-Id: Idb33bb91df5a4c3a0aa782814d0d9658c978f608 Reviewed-by: Qt Submodule Update Bot <qt_submodule_update_bot@qt-project.org>
If I'm in qttools, and run
git submodule init
andgit submodule update
, it seems qlitehtml is populated correctly.[rockylinux@rocky8 qlitehtml]$ git submodule -f05f78ef33225823d348ee18f2fa464e95024dd2 ./ [rockylinux@rocky8 qttools]$ git submodule init Submodule 'src/assistant/qlitehtml' (https://code.qt.io/playground/qlitehtml.git) registered for path 'src/assistant/qlitehtml' [rockylinux@rocky8 qttools]$ git submodule update --recursive Cloning into '/home/rockylinux/src/qt6/qttools/src/assistant/qlitehtml'... Submodule path 'src/assistant/qlitehtml': checked out 'f05f78ef33225823d348ee18f2fa464e95024dd2' [rockylinux@rocky8 qlitehtml]$ ls CMakeLists.txt LICENSES README.md src tests
-
Hi and welcome to devnet,
How did you get the sources ?
-
Since I made the post, I realize I perhaps wasn't following the instrcutions completely, though I thought so. The error came up as "have you ran submodule init --update --recursive?" I tried that and it ended up pulling down quite a bit more. I'll update more soon.