Qt 6.0.0 Known Issues: Difference between revisions
Jump to navigation
Jump to search
(Created page with "Category:Known Issues *Check that your system meets [https://doc-snapshots.qt.io/qt6-dev/gettingstarted.html#platform-requirements%20Qt's%20requirements] *All open issues...") |
(Add Android alpha release issues.) |
||
Line 13: | Line 13: | ||
==Android== | ==Android== | ||
* QMake script has a hardcoded path to the host qmake from the built environment in CI. A workaround is to manually edit android_<abi>/bin/qmake to use the host's qmake path. See [https://bugreports.qt.io/browse/QTBUG-87071 QTBUG-87071]. | |||
* If you don't have a system-wide cmake installed, or if cmake is not in the PATH, add it to the PATH, otherwise, qt-cmake will not find a usable cmake. See [https://bugreports.qt.io/browse/QTBUG-87071 QTBUG-87071]. | |||
* On Windows hosts, building, and packaging an APK has issues with path formats. See [https://bugreports.qt.io/browse/QTBUG-87066 QTBUG-87066] for manually applying the fixes. These fixes will be included in the next beta release. | |||
* qt-cmake has hardcoded value for the Android toolchain file from CI, that's why additional args must be provided to qt-cmake, use the following command (see [https://bugreports.qt.io/browse/QTBUG-87068 QTBUG-87068]):<syntaxhighlight lang="sh"> | |||
<qt_android_install>/bin/qt-cmake -S <source_path> -B <build_path> -DANDROID_SDK_ROOT:PATH=<sdk_path> -DANDROID_ABI:STRING=<abi> -DANDROID_NATIVE_API_LEVEL:STRING=23 -DCMAKE_TOOLCHAIN_FILE:PATH=<ndk_path/build/cmake/android.toolchain.cmake -DCMAKE_FIND_ROOT_PATH:PATH=<qt_android_install> -DQT_HOST_PATH:PATH=<qt_host_install> | |||
</syntaxhighlight> | |||
==iOS== | ==iOS== |
Revision as of 11:04, 5 October 2020
- Check that your system meets [1]
- All open issues can be found from Jira: https://bugreports.qt.io
- RTA findings here
All platforms
Windows
Linux
macOS
Android
- QMake script has a hardcoded path to the host qmake from the built environment in CI. A workaround is to manually edit android_<abi>/bin/qmake to use the host's qmake path. See QTBUG-87071.
- If you don't have a system-wide cmake installed, or if cmake is not in the PATH, add it to the PATH, otherwise, qt-cmake will not find a usable cmake. See QTBUG-87071.
- On Windows hosts, building, and packaging an APK has issues with path formats. See QTBUG-87066 for manually applying the fixes. These fixes will be included in the next beta release.
- qt-cmake has hardcoded value for the Android toolchain file from CI, that's why additional args must be provided to qt-cmake, use the following command (see QTBUG-87068):
<qt_android_install>/bin/qt-cmake -S <source_path> -B <build_path> -DANDROID_SDK_ROOT:PATH=<sdk_path> -DANDROID_ABI:STRING=<abi> -DANDROID_NATIVE_API_LEVEL:STRING=23 -DCMAKE_TOOLCHAIN_FILE:PATH=<ndk_path/build/cmake/android.toolchain.cmake -DCMAKE_FIND_ROOT_PATH:PATH=<qt_android_install> -DQT_HOST_PATH:PATH=<qt_host_install>