Qt wiki will be updated on October 12th 2023 starting at 11:30 AM (EEST) and the maintenance will last around 2-3 hours. During the maintenance the site will be unavailable.
Qt 5.9.5 Known Issues
Jump to navigation
Jump to search
All platforms
- Check that your system meets Qt's requirements
- All open issues can be found from Jira: https://bugreports.qt.io
- Old qt-unified-online-installer-3.0.1 (or older) can't any more be used to get Qt 5.9.4 (or later releases), see QTBUG-65798
- For new installations use newest online installer (qt-unified-x86-3.0.2-online). For existing installations please update maintenance tool at first.
Windows
- Static builds of Qt with Microsoft Visual Studio 2017 (through Update 2) do not work and will likely crash at runtime. This is believed to be a compiler bug and therefore an update from Microsoft is required. See https://bugreports.qt.io/browse/QTBUG-59721.
Linux
Building Qt modules fails with binaries delivered with online installer see bug QTBUG-53865. Workaround is to build whole Qt from source or have libicu 56 installed on the system.
macOS
After upgrading to the latest version of XCode, then building Qt 5.9.5 from source will fail with the following error message:
mac/qfontengine_coretext.mm:841:20: error: qualified reference to 'QFixed' is a constructor name rather than a type in this context
return QFixed::QFixed(int(CTFontGetUnitsPerEm(ctfont)));
This can be fixed by applying the following patch:
--- a/src/platformsupport/fontdatabases/mac/qfontengine_coretext.mm
+++ b/src/platformsupport/fontdatabases/mac/qfontengine_coretext.mm
@@ -824,7 +824,7 @@ void QCoreTextFontEngine::getUnscaledGlyph(glyph_t glyph, QPainterPath *path, gl
QFixed QCoreTextFontEngine::emSquareSize() const
{
- return QFixed::QFixed(int(CTFontGetUnitsPerEm(ctfont)));
+ return QFixed(int(CTFontGetUnitsPerEm(ctfont)));
}
See QTBUG-67545 for more details.
Android
iOS
UWP
- Several example crashes
- QTBUG-67562 - [WinRT] Savegame example crashes on WinRT
- QTBUG-67561 - [WinRT] Audiodecoder example crashes on WinRT
- QTBUG-67570 - [WinRT] 'dnslookup' example crashes on WinRT
- QTBUG-67569 - [WinRT] 'downloadmanager' example crashes on WinRT
- QTBUG-67567 - [WinRT] 'twittertimeline' example crashes on WinRT
- QTBUG-67175 - Scxml examples crashing after launch on UWP
- QTBUG-67568 - [WinRT] 'computegles31' example crashes on WinRT
- QTBUG-67566 - [WinRT] 'factorial' example crashes on WinRT
- QTBUG-67565 - [WinRT] Quick player example crashes on WinRT
- QTBUG-67563 - [WinRT] Virtualkeyboard example crashes on WinRT
QNX
- C++ debugging fails on QNX, see https://bugreports.qt.io/browse/QTCREATORBUG-17901