> Message: 1 > Date: Thu, 2 Sep 2010 23:34:02 +0200 > From: yogesh upreti<[email protected]> > Subject: [Qt-creator] (no subject) > To: [email protected] > Message-ID: > <[email protected]> > Content-Type: text/plain; charset="iso-8859-1" > > Hi All, > I don't know if this is the right place to ask questions about Qt creator. > But I am trying to build my project using Qt creator, (which was building it > till yesterday) but unable to do it successfully. > > 1. When I try to Build a my project it shows > Running build steps for project JobCreator... > Starting: "c:/qt/2010.04/qt/bin/qmake.exe" > F:/Work/Programming/QT/JobCreator/JobCreator.pro -r -spec win32-g++ > > > and hangs after this, dose't do anything further, I have left it for 2 hrs > and nothing happens, I have to "cancel build" in the end and it ends with : > > The process "c:/qt/2010.04/qt/bin/qmake.exe" crashed. > > Canceled build. > > > 2. When I try to "clean" the project, it shows > > Running build steps for project JobCreator... > > Starting: "C:/Qt/2010.04/mingw/bin/mingw32-make.exe" clean -w > > mingw32-make: Entering directory `F:/Work/Programming/QT/JobCreator' > > mingw32-make: Leaving directory `F:/Work/Programming/QT/JobCreator' > > mingw32-make: *** No rule to make target `clean'. Stop. > > The process "C:/Qt/2010.04/mingw/bin/mingw32-make.exe" exited with code %2. > > I have now second time reinstalled the version. But somehow Qt-Creator > remembers old settings from previous version. > > > I tried making a new test project, it doesn't run either. > > > Can someone tell me what could be the problem?? > > > Thanks in advance > > Yogesh Upreti > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > http://lists.trolltech.com/pipermail/qt-creator/attachments/20100902/f7f24370/attachment-0001.html > > ------------------------------ > > Message: 2 > Date: Thu, 2 Sep 2010 23:34:46 +0200 > From: yogesh upreti<[email protected]> > Subject: [Qt-creator] > To: [email protected] > Message-ID: > <[email protected]> > Content-Type: text/plain; charset="iso-8859-1" > > Hi All, > I don't know if this is the right place to ask questions about Qt creator. > But I am trying to build my project using Qt creator, (which was building it > till yesterday) but unable to do it successfully. > > 1. When I try to Build a my project it shows > Running build steps for project JobCreator... > Starting: "c:/qt/2010.04/qt/bin/qmake.exe" > F:/Work/Programming/QT/JobCreator/JobCreator.pro -r -spec win32-g++ > > > and hangs after this, dose't do anything further, I have left it for 2 hrs > and nothing happens, I have to "cancel build" in the end and it ends with : > > The process "c:/qt/2010.04/qt/bin/qmake.exe" crashed. > > Canceled build. > > > 2. When I try to "clean" the project, it shows > > Running build steps for project JobCreator... > > Starting: "C:/Qt/2010.04/mingw/bin/mingw32-make.exe" clean -w > > mingw32-make: Entering directory `F:/Work/Programming/QT/JobCreator' > > mingw32-make: Leaving directory `F:/Work/Programming/QT/JobCreator' > > mingw32-make: *** No rule to make target `clean'. Stop. > > The process "C:/Qt/2010.04/mingw/bin/mingw32-make.exe" exited with code %2. > > I have now second time reinstalled the version. But somehow Qt-Creator > remembers old settings from previous version. > > > I tried making a new test project, it doesn't run either. > > > Can someone tell me what could be the problem?? > > > Thanks in advance > > Yogesh Upreti > Yogesh, One of the first problems with Qt installation I encountered was found to be a problem with the 'type' of MinGW installed.
There are two variants now each having a different exception mechanism and stack unwinding. Using SJLJ (setjmp/longjmp) variant (and commonly produced/recommended) doesn't work with Qt. I had to install DW2 (Dwarf-2) MinGW for Qt to work properly. (see - TDM FAQ - http://tdm-gcc.tdragon.net/start ) Regards, Scott _______________________________________________ Qt-creator mailing list [email protected] http://lists.trolltech.com/mailman/listinfo/qt-creator
