Enable c++1y in qt (mingw)
-
I'm trying ton enable @CONFIG += c++14@ in qmake (using mingw), but I always get
-std=c++0x
in the makefiles generated. the only workaround I found is to add in my .pro fileQT_GCC_MAJOR_VERSION = 4
andQT_GCC_MINOR_VERSION =
9, then I get properly-std=c++1y
.
Those variables should be set automatically according to the compiler used, am I right ? What could make these variables not being set ? -
Hi and welcome to devnet,
Which version of MinGW have you installed ? Which one is used by your Kit ?
-
Hi,
I'm using the latest qtsdk, so this is mingw 4.9.1 with Qt 5.4.1
I get the same behaviour in qt creator and in console