PDA

View Full Version : I recently used QT i need help badly



miguel_mark
17th October 2007, 07:43
Can somebody tell me what this means:
"Build (make)...
c:\newfolder\bin\qmake.exe -win32 -o Makefile t14.pro
C:/newfolder/bin/mingw32-make.exe -f Makefile.Debug all
mingw32-make.exe[1]: Entering directory `C:/newfolder/examples/tutorial/t14'
g++ -c -g -Wall -frtti -fexceptions -mthreads -DUNICODE -DQT_LARGEFILE_SUPPORT -DQT_DLL -DQT_GUI_LIB -DQT_CORE_LIB -DQT_THREAD_SUPPORT -DQT_NEEDS_QMAIN -I"..\..\..\include\QtCore" -I"..\..\..\include\QtCore" -I"..\..\..\include\QtGui" -I"..\..\..\include\QtGui" -I"..\..\..\include" -I"c:\newfolder\include\ActiveQt" -I"tmp\moc\debug_shared" -I"." -I"..\..\..\mkspecs\win32-g++" -o tmp\obj\debug_shared\cannonfield.o cannonfield.cpp
'1' is not recognized as an internal or external command,
operable program or batch file.
mingw32-make.exe[1]: Leaving directory `C:/newfolder/examples/tutorial/t14'
mingw32-make.exe[1]: *** [tmp\obj\debug_shared\cannonfield.o] Error 1
mingw32-make.exe: *** [debug-all] Error 2"

i need help badly... please post all the help that you can give...

wysota
22nd October 2007, 10:37
What exactly did you do to receive the above output?

DeepDiver
22nd October 2007, 11:15
Hi,

looks like g++ is not found by mingw32-make in the PATH. Just type g++ on the command line and see if it is executed.
If not add the location of g++ to the PATH.

Good luck,

Tom