Thread (3 messages) flat view 3 messages, 2 authors, 2016-06-15

Re: Bizarro race conditions in the Git Makefile

From: Ævar Arnfjörð Bjarmason <hidden>
Date: 2016-06-15 22:49:15

On Fri, Aug 6, 2010 at 21:14, Jonathan Nieder [off-list ref] wrote:
Ęvar Arnfjörš Bjarmason wrote:
quoted
Those interested in
poking their eyes can try:

    while nice -n 30 make -j 15 clean all CFLAGS=-O0 CC=gcc; do 1; done
You are asking make to simultaneously build and unbuild everything.
It does not really surprise me that it gets confused.

Does

 while
       nice -n 30 make -j 15 clean CFLAGS=-O0 CC=gcc &&
       nice -n 30 make -j 15 all CFLAGS=-O0 CC=gcc
 do
       :
 done

behave better?
Yes that works. I thought that -j $n would mean that make would use $n
jobs to complete the first target, then move onto the next. Not
execute them all in paralell.

Thanks, and I have no idea about those Makefile/Perl changes.
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help