Hello!
Recently began to learn QT. Installed qt 4.8.4, qt creator 2.6.1 and the MinGW compiler. The very text of a simple program:
#include <QCoreApplication> #include <iostream> int main(int argc, char *argv[]) { QCoreApplication a(argc, argv); std::cout << "Hello, world!" << std::endl; return a.exec(); }
Whichever compiler I use (I tried different versions of minGW and even the compiler from MVS), the same error comes out:
Error - RtlWerpReportException failed with status code :-1073741823. Will try to launch the process directly
If QCoreApplication is not used, then the project is compiled and run normally. But in this case, there is no point in QT, in fact.
What to do to solve this problem?
std::cout
in your code. This is not a standard Qt's helloworld. - KoVadim