Qt 4.8.3 mingw 4.7 Windows 7 x64 を使用しています。exeファイルが動かない…
Problem signature:
Problem Event Name: APPCRASH
Application Name: hello.exe
Application Version: 0.0.0.0
Application Timestamp: 509d1749
Fault Module Name: QtCore4.dll
Fault Module Version: 4.8.3.0
Fault Module Timestamp: 504ee1c2
Exception Code: c0000005
Exception Offset: 001103e8
OS Version: 6.1.7601.2.1.0.256.4
Locale ID: 1067
Additional Information 1: 0a9e
Additional Information 2: 0a9e372d3b4ad19135b953a78882e789
Additional Information 3: 0a9e
Additional Information 4: 0a9e372d3b4ad19135b953a78882e789
これは非常に単純なソース コードです。
#include <QApplication>
#include <QLabel>
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
QLabel *label = new QLabel("Hello Qt!");
label->show();
return app.exec();
}