Details
-
Bug
-
Resolution: Fixed
-
P1: Critical
-
6.6.1, 6.7.0
-
None
-
-
20c3675d9 (master), 8041d5e71 (dev)
Description
Using Qt 6.6.1 or 6.7.0 beta (via the online installer) on a Linux desktop computer, cross compiling Qt modules for Android.
I'm usually patching QtConnectivity, and building QtMqtt and maplibre-native-qt for my applications.
Unfortunately, the script to configure and build Qt modules is broken again for Android armv7:
Qt/6.6.1/android_armv7/bin/qt-configure-module
The line:
cmake_script_path="$script_dir_path/..\lib\cmake\Qt6/QtProcessConfigureArgs.cmake"
is mixing slash and backslash, causing it to fail.
Simply rewriting the line with only slashes works fine:
cmake_script_path="$script_dir_path/../lib/cmake/Qt6/QtProcessConfigureArgs.cmake"
Attachments
Issue Links
- relates to
-
QTBUG-131810 [REG 6.8.1->6.9.0] Running configure on additional module with prebuild Qt binaries fails on Android
- In Review