Qt5 rc1 crashes with qWarning() ? or is it just me ?
General and Desktop
3
Posts
2
Posters
1.5k
Views
1
Watching
-
I'm getting crashes with qWarning() in rc1, was using beta2 and everything was fine. Is it just my installation (linux + mageia 3 alpha) or is it a qt5 problem ? maybe some icu conflict ?
@
#include <QApplication>
#include <qdebug.h>int main(int argc, char *argv[])
{
QApplication a(argc, argv);qDebug() << "qDebug() XXXXXXXXXX" << endl; qWarning() << "qWarning() crash after this :(" << endl; qDebug() << "qDebug() XXXXXXXXXX" << endl; a.exec();
}
@ -
Did you "file a bug report":https://bugreports.qt-project.org/ ?
Something like that should be brought to the attention of the developers (and most do not read this forum).