Intel C++ problem with Qt 5.7.1
-
Hello,
After I updated from Qt 5.7.0 to 5.7.1 my Intel C++ 2016 application builds were failing due to
qMove
not being defined tostd::move
, at least at the point of qimage.h inclusion. I don't see a change in qcompilerdetection.h that is relevant so I'm not sure what is going on. I worked around the problem by replacingqMove
withstd::move
in qimage.h.My build environment and .pro files have not changed and, as before, I compile with /Qstd=c++11 so I'm perplexed.
This is on Windows 10 doing 64-bit builds and using the msvc2015_64 support in Qt 5.7.1.
Any ideas? Thanks!
-
Hello,
After I updated from Qt 5.7.0 to 5.7.1 my Intel C++ 2016 application builds were failing due to
qMove
not being defined tostd::move
, at least at the point of qimage.h inclusion. I don't see a change in qcompilerdetection.h that is relevant so I'm not sure what is going on. I worked around the problem by replacingqMove
withstd::move
in qimage.h.My build environment and .pro files have not changed and, as before, I compile with /Qstd=c++11 so I'm perplexed.
This is on Windows 10 doing 64-bit builds and using the msvc2015_64 support in Qt 5.7.1.
Any ideas? Thanks!
This was reported as a Qt bug: https://bugreports.qt.io/browse/QTBUG-57915.
A link to a related bug and a patch that solves this issue can be found at that bug report.