<div dir="auto"><div><div class="gmail_quote"><div dir="ltr" class="gmail_attr">Jonas Maebe <<a href="mailto:jonas@freepascal.org">jonas@freepascal.org</a>> schrieb am Mi., 29. Apr. 2020, 19:50:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">On 29/04/2020 19:39, Victor Campillo via fpc-pascal wrote:<br>
> For years I have been using the same script to compile FPC, in this<br>
> script I use the next command:<br>
> <br>
> make -j 9 clean all install<br>
> <br>
> After the revision 44849 the use of the jobs option does not work<br>
> anymore, it fails to compile, reviewing the changes in revision 44849<br>
> shows that was removed the option ".NOTPARALLEL" in the Makefile, and<br>
> this option as far as I know leave without any effect specifying the<br>
> option --jobs, so my using over the years of the option "-j 9" was<br>
> actually useless.<br>
> <br>
> Probably I am doing something wrong, but to be sure, ¿it is supported to<br>
> use the jobs option of make?<br>
<br>
Yes, but you cannot use "clean" and "all" in the same make invocation.<br>
This was in fact never supported, and did not work on all platforms either.<br>
<br>
So simply split it:<br>
<br>
make -j 9 clean<br>
make -j 9 all install<br></blockquote></div></div><div dir="auto"><br></div><div dir="auto">Also you should specify FPMAKEOPT="-T 9" in addition to -j. </div><div dir="auto"><br></div><div dir="auto">Regards, </div><div dir="auto">Sven </div><div dir="auto"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
</blockquote></div></div></div>