Ok, I found the problem. its from my code.
I thought that I should use QGuiApplication instead of QApplication for gui app, and after debugging it appears that the crash happened when QWidget try to get QApplication instance to know the type of the application.
Here is my first Qt5 app :)
@#include <QtWidgets/QApplication>
#include <QtWidgets/QWidget>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
QWidget w;
w.show();
return a.exec();
}@
Thanks.