1

from here http://nuwen.net/mingw.html I've downloaded gcc 4.7 and I've set this up in qt. Everything compiles fine in qt, unfortunately when I run my app (from qt) it crashes.
Any thougts?
Edit (this is this application, OS Win7, Qt 4.8):

#include <QApplication>
#include <QDialog>
int main(int c, char** v)
{
    QApplication app(c,v);
    QDialog* d = new QDialog();
    d->show();
    return app.exec();
}
smallB
  • 16,662
  • 33
  • 107
  • 151

1 Answers1

0

If you update the compiler, you should probably recompile Qt.

Different version of gcc can work together, but they might be themselves compiled with incompatible options.

alexisdm
  • 29,448
  • 6
  • 64
  • 99
  • #alexisdm thanks, will try to do it in few weeks time then, now I'm just too busy with current project. Thanks again. – smallB Apr 10 '12 at 12:24