Re: [Development] thread_local: replacing GCC with Clang for MinGW

2019-08-24 Thread Thiago Macieira
On Friday, 23 August 2019 11:16:29 PDT Thiago Macieira wrote: > Simon wrote: > > I ran into the crash a while ago in the CI. See also > > https://gcc.gnu.org/bugzilla/show_bug.cgi?id=83562 . > > That bug report shows that GCC does not properly implement thread_local on > MinGW 32-bit over 8 years

Re: [Development] Using windeployqt from a cross-compiled Qt

2019-08-24 Thread Kai Pastor, DG0YT
Am 24.08.19 um 16:55 schrieb Richard Weickelt: I've been trying to use windeployqt from a cross-compiled (mingw-w64 on Linux) Qt. I must be the only person on the planet doing this because there is a bug in windeployqt preventing it. Tried that in the past, but resorted to CMake and BundleUtili

Re: [Development] Requiring minimum GCC 7/MinGW (was: Dropping MinGW support in Qt 6 (Was: HEADS-UP: QStringLiteral))

2019-08-24 Thread Thiago Macieira
On Saturday, 24 August 2019 02:21:13 PDT Konstantin Tokarev wrote: > 23.08.2019, 21:11, "Thiago Macieira" : > > On Friday, 23 August 2019 09:04:55 PDT Konstantin Tokarev wrote: > >> > libgcc on pure MinGW doesn't use winpthreads, it uses Win32. > >> > >> std::thread and co are not implemented fo

[Development] Using windeployqt from a cross-compiled Qt

2019-08-24 Thread Richard Weickelt
Hello, I've been trying to use windeployqt from a cross-compiled (mingw-w64 on Linux) Qt. I must be the only person on the planet doing this because there is a bug in windeployqt preventing it. The PE functionality is guarded by Q_OS_WIN. https://code.qt.io/cgit/qt/qttools.git/tree/src/shared/winu

Re: [Development] Requiring minimum GCC 7/MinGW (was: Dropping MinGW support in Qt 6 (Was: HEADS-UP: QStringLiteral))

2019-08-24 Thread Konstantin Tokarev
23.08.2019, 21:11, "Thiago Macieira" : > On Friday, 23 August 2019 09:04:55 PDT Konstantin Tokarev wrote: >>  > libgcc on pure MinGW doesn't use winpthreads, it uses Win32. >> >>  std::thread and co are not implemented for win32, so we use pthreads version >>  in Coin and distribute it with SDK.