[Development] HEADS-UP: Branching from '5.14' to '5.14.1' started

2020-01-08 Thread Jani Heikkinen
Hi, We have soft branched '5.14.1' from '5.14'. So from now on all new changes targeted to Qt 5.14.1 release should be done in '5.14.1'. Final downmerge from '5.14' to '5.14.1' will happen Wed 15th January so there should be enough time to finalize ongoing changes in '5.14'. Target is to releas

Re: [Development] Are we already allowed to use C++17 in dev?

2020-01-08 Thread Tor Arne Vestbø
> On 8 Jan 2020, at 23:50, Thiago Macieira wrote: > >> - We still build for MacOS 10.13 which do not support the C++17 stdlib > > Same solution as the current problem. Just remove that OS/compiler. Yes, once we have a replacement (10.14 or ideally 10.15) in the CI. Unless you’re suggesting w

Re: [Development] Are we already allowed to use C++17 in dev?

2020-01-08 Thread Thiago Macieira
On Wednesday, 8 January 2020 14:12:17 PST Olivier Goffart wrote: > On 08.01.20 18:21, Thiago Macieira wrote: > > qcc doesn't seem to support it. > > > > kernel/qcoreapplication.cpp: In static member function 'static void > > Not yet: > > - qmake isn't build with -std=c++17 yet, so you can't ha

Re: [Development] Are we already allowed to use C++17 in dev?

2020-01-08 Thread Olivier Goffart
On 08.01.20 18:21, Thiago Macieira wrote: qcc doesn't seem to support it. kernel/qcoreapplication.cpp: In static member function 'static void QCoreApplicationPrivate::initLocale()': kernel/qcoreapplication.cpp:601:45: error: expected ')' before ';' token if (int dot = newLocale.in

Re: [Development] Qt 5.14 MinGW debug build doesn't add debug suffix

2020-01-08 Thread Thiago Macieira
On Wednesday, 8 January 2020 10:10:06 PST Sérgio Martins via Development wrote: > Wondering if there's a reason why the suffix is needed in the first > place... > I thought only MSVC had problems mixing debug and release runtimes. Correct. We stopped adding the suffix in MinGW builds. I wonder

Re: [Development] Qt 5.14 MinGW debug build doesn't add debug suffix

2020-01-08 Thread Sérgio Martins via Development
On 2020-01-07 12:52, Roland Winklmeier wrote: Second, I switched my nightly build to 5.14 branch and was building debug binaries as usual. Configure arguments: configureArguments=-developer-build -debug -opensource -nomake examples -nomake tests -confirm-license -opengl desktop -dbus -openssl -

[Development] Are we already allowed to use C++17 in dev?

2020-01-08 Thread Thiago Macieira
qcc doesn't seem to support it. kernel/qcoreapplication.cpp: In static member function 'static void QCoreApplicationPrivate::initLocale()': kernel/qcoreapplication.cpp:601:45: error: expected ')' before ';' token if (int dot = newLocale.indexOf('.'); dot != -1)