Re: [Qt-creator] Multithread / multi jobs build with QtCreator

2009-08-18 Thread Kai Koehne
ext Vincent LEFORT wrote: > So it's a problem of qmake when he create the Makefile or the make > command from mingw ? > > No one have a solution ? How about using the MAKEFLAGS environment variable instead of the -j command line argument. E.g specify MAKEFLAGS->j4 in your build environment. I

Re: [Qt-creator] Multithread / multi jobs build with QtCreator

2009-08-18 Thread Vincent LEFORT
So it's a problem of qmake when he create the Makefile or the make command from mingw ? No one have a solution ? On Fri, Aug 14, 2009 at 12:53, Juergen Hunold wrote: > Hi, > > On Wednesday 12 August 2009, Vincent LEFORT wrote: > > I have installed the lastest release of mingw32-make (3.81) but i

Re: [Qt-creator] Multithread / multi jobs build with QtCreator

2009-08-14 Thread Juergen Hunold
Hi, On Wednesday 12 August 2009, Vincent LEFORT wrote: > I have installed the lastest release of mingw32-make (3.81) but it > seems to build in only one jobs :( The problem seems to be that options are not passed to make sub- commands. Running mingw32-make -j4 -i -f Makefile.Debug in "qt/src/co

Re: [Qt-creator] Multithread / multi jobs build with QtCreator

2009-08-12 Thread Vincent LEFORT
I have installed the lastest release of mingw32-make (3.81) but it seems to build in only one jobs :( On Wed, Aug 12, 2009 at 10:37, Karsten Heimrich wrote: > Hi, > > the single job run is a limitation of the shipped mingw32-make > commmand. But the recent mingw32-make build should support > mult

Re: [Qt-creator] Multithread / multi jobs build with QtCreator

2009-08-12 Thread Karsten Heimrich
Hi, the single job run is a limitation of the shipped mingw32-make commmand. But the recent mingw32-make build should support multiple jobs, you can get it here: http://sourceforge.net/projects/mingw/files/GNU%20Make/ > Exactly, > > I've installed MSYS and put the bin folder to my path (where

Re: [Qt-creator] Multithread / multi jobs build with QtCreator

2009-08-11 Thread Vincent LEFORT
Exactly, I've installed MSYS and put the bin folder to my path (where is sh.exe) This error disappear but it seems to have only one jobs... Vincent On Wed, Aug 12, 2009 at 03:41, James wrote: > You can attempt to put it there, but you get this error: > > Starting: C:/Qt/2009.02/qt/bin/qmake.e

Re: [Qt-creator] Multithread / multi jobs build with QtCreator

2009-08-11 Thread James
You can attempt to put it there, but you get this error: Starting: C:/Qt/2009.02/qt/bin/qmake.exe -spec win32-g++ -r Exited with code 0. Starting: C:/Qt/2009.02/mingw/bin/mingw32-make.exe -j 4 -w C:\Qt\2009.02\mingw\bin\mingw32-make.exe: Do not specify -j or --jobs if sh.exe is not available.

Re: [Qt-creator] Multithread / multi jobs build with QtCreator

2009-08-11 Thread André Pönitz
On Tuesday 11 August 2009 14:21:48 ext Vincent LEFORT wrote: > Hello all, > > I havn't found information about multithread building in QtCreator. > > With g++ in command line we can put the arguments : "-j XX" for > make in multiple jobs. > > It's impossible to use this option with QtCreator wi

[Qt-creator] Multithread / multi jobs build with QtCreator

2009-08-11 Thread Vincent LEFORT
Hello all, I havn't found information about multithread building in QtCreator. With g++ in command line we can put the arguments : "-j XX" for make in multiple jobs. It's impossible to use this option with QtCreator with mingw. There are a solution ? Or It's in the roadmap for 1.3 version ? Tha