Strange behavior on XP with Qt 5.6.1
-
Recently, I migrate my applications from VS2013 + Qt 5.5.1 to VS2015 + Qt 5.6.1. All works well on Win7. But for one of my application, when running on XP, some of the text on the app are bigger and added delete line, and under line. Sorry for that I can't figure out how to attach a picture here. That's strange, because, another application can run well, so I doubt, may there are some modules won't run well on XP. Anyone can help me?
Update:
From this link, Qt 5.6 support XP. But I'm not sure if the binaries download from : http://download.qt.io/official_releases/qt/5.6/5.6.1-1/qt-opensource-windows-x86-msvc2015-5.6.1-1.exe.mirrorlist is compiled with XP support. Do I need compile Qt from source to get XP support?
-
-
-
@SGaist Can you give some informations about where to find the compilation configures used by the library packages provided by Qt? I want to know if they target Xp, and if use "-no-directwrite".
@diverger said:
Can you give some informations about where to find the compilation configures used by the library packages provided by Qt?
-
@diverger said:
Can you give some informations about where to find the compilation configures used by the library packages provided by Qt?
@JKSH Thansk very much.
Sadly, I don't find '-target xp', and ''-no-directwrite". IMHO, if Qt 5.6.1 is made the 'LTS' version, why not compile it to support XP? As the may reason prevent some people like me to migrate to Qt 5.7.0 is we have to make the application can run on XP. Because there many old machines use XP. The user use XP just as it's 'enough' for them, they won't bother to update to a new one.
-
@JKSH Thansk very much.
Sadly, I don't find '-target xp', and ''-no-directwrite". IMHO, if Qt 5.6.1 is made the 'LTS' version, why not compile it to support XP? As the may reason prevent some people like me to migrate to Qt 5.7.0 is we have to make the application can run on XP. Because there many old machines use XP. The user use XP just as it's 'enough' for them, they won't bother to update to a new one.
@diverger said:
IMHO, if Qt 5.6.1 is made the 'LTS' version, why not compile it to support XP?
- Because resources are limited.
- Each build requires resources (hardware, time, energy, money)
- Each build makes it slower to integrate bug fixes and new features into Qt.
- Because compiling for Windows XP will disable certain features in Qt 5.6.
- This means the packages that are compiled for Windows XP are not suitable for newer versions of Windows.
As the may reason prevent some people like me to migrate to Qt 5.7.0 is we have to make the application can run on XP. Because there many old machines use XP. The user use XP just as it's 'enough' for them, they won't bother to update to a new one.
If you want to continue supporting Windows XP, Qt offers you two solutions:
- Create your own custom build of Qt 5.6 (Embedded system developers do this regularly), OR
- Use an older version of Qt that has been compiled for Windows XP.
Qt 5.6 does provide support for Windows XP until 2019. However, this support is about fixing bugs, not ready-made builds.
- Because resources are limited.
-
Thanks for your explanation. One reason I don't want to go back to older versions is that I have migrated to VS2015, but the older versions don't provide pre-built libraries compiled with it.
I think I have to compile the Qt 5.6.1 with XP support or compile the older versions, such as Qt 5.5.1 with VS2015.
-
You're welcome :)
You can find build instructions at https://wiki.qt.io/Building_Qt_5_from_Git If you need any help, please feel free to ask.