On 29/04/2020 19:39, Victor Campillo via fpc-pascal wrote: > For years I have been using the same script to compile FPC, in this > script I use the next command: > > make -j 9 clean all install > > After the revision 44849 the use of the jobs option does not work > anymore, it fails to compile, reviewing the changes in revision 44849 > shows that was removed the option ".NOTPARALLEL" in the Makefile, and > this option as far as I know leave without any effect specifying the > option --jobs, so my using over the years of the option "-j 9" was > actually useless. > > Probably I am doing something wrong, but to be sure, ¿it is supported to > use the jobs option of make?
Yes, but you cannot use "clean" and "all" in the same make invocation. This was in fact never supported, and did not work on all platforms either. So simply split it: make -j 9 clean make -j 9 all install Jonas _______________________________________________ fpc-pascal maillist - fpc-pascal@lists.freepascal.org https://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-pascal