When you switch Qt from the old version to the latest version(Qt 5.7.0), you must find your programs cannot compile any more. Even you do not change any option, the mingw compiler complains:
error “Qt requires C++11 support”
Qt always brings compiling trouble to programmers when new version is introduced. This time, you should add a new option to your building command:
-std=gnu++11
Comments are closed, but trackbacks and pingbacks are open.