Re: [yocto] [feature request] avoid getting the server stuck because of high "-j" value

2017-08-24 Thread Gianfranco Costamagna
Thanks you all for the valuable answers! cheers, Gianfranco -- ___ yocto mailing list yocto@yoctoproject.org https://lists.yoctoproject.org/listinfo/yocto

[yocto] feature request: avoid getting the server stuck because of high "-j" value

2017-08-06 Thread Gianfranco Costamagna
Hello Yocto developers! recently I found a really nice make feature, that tunes at runtime the number of parallel execution jobs, according to the current system load [1]. I think such a feature would be really nice on server were multiple yocto builds are run in parallel, and when people

Re: [yocto] [feature request] avoid getting the server stuck because of high "-j" value

2017-08-04 Thread Burton, Ross
Alex's comment is right that the semantics of PARALLEL_MAKE are GNU Make specific so you might find some recipes don't handle anything but there being -j values. You might have a little bit of fixing to do. Ross On 4 August 2017 at 13:00, Burton, Ross wrote: > It's not

Re: [yocto] [feature request] avoid getting the server stuck because of high "-j" value

2017-08-04 Thread Burton, Ross
It's not just feasible but you can do it right now. PARALLEL_MAKE is the variable that sets how parallel the build should be. By default we pass -j wrote: > Hello Yocto developers! > > > > > recently I found a really nice make feature, that tunes at runtime the > number of parallel > > execution

Re: [yocto] [feature request] avoid getting the server stuck because of high "-j" value

2017-08-04 Thread Alexander Kanavin
On 08/04/2017 01:58 PM, Gianfranco Costamagna wrote: recently I found a really nice make feature, that tunes at runtime the number of parallel execution jobs, according to the current system load [1]. I think such a feature would be really nice on server were multiple yocto builds are run

[yocto] [feature request] avoid getting the server stuck because of high "-j" value

2017-08-04 Thread Gianfranco Costamagna
Hello Yocto developers! recently I found a really nice make feature, that tunes at runtime the number of parallel execution jobs, according to the current system load [1]. I think such a feature would be really nice on server were multiple yocto builds are run in parallel, and when