pthread_spin_lock() segmentation error in Qt5Widgetsd.dll
-
I've been working on a hobby project for years using Windows, MinGW, Eclipse and the Qt 5.12 libraries.
Coming back to the project after a year I find that running the simplest QApplication with a QMainWindow will not run with a GDB debugger. Has Win10 changed?Using g++ I find that it runs fine with the -g removed, the -DQT_QML_DEBUG removed and the four libraries (libQt5Widgetsd.a, libQt5Guid.a, etc.) changed to their names without (!) the 'd' at the end (libQt5Widgets.a, libQt5Gui.a, etc.) .
Otherwise, with -g and the other flags and files, the error msg I receive is :
Thread 1 received signal SIGSEGV, Segmentation fault.
0x000000000d6116d0 in pthread_spin_lock () from
D:\Projects21\AnalogClock\bin\Debug\Qt5Cored.dllI'd appreciate any help.
-
I've been working on a hobby project for years using Windows, MinGW, Eclipse and the Qt 5.12 libraries.
Coming back to the project after a year I find that running the simplest QApplication with a QMainWindow will not run with a GDB debugger. Has Win10 changed?Using g++ I find that it runs fine with the -g removed, the -DQT_QML_DEBUG removed and the four libraries (libQt5Widgetsd.a, libQt5Guid.a, etc.) changed to their names without (!) the 'd' at the end (libQt5Widgets.a, libQt5Gui.a, etc.) .
Otherwise, with -g and the other flags and files, the error msg I receive is :
Thread 1 received signal SIGSEGV, Segmentation fault.
0x000000000d6116d0 in pthread_spin_lock () from
D:\Projects21\AnalogClock\bin\Debug\Qt5Cored.dllI'd appreciate any help.
@Rapidrain Did you try with a more recent Qt and MinGW versions?