Re: [fpc-pascal] Question about compiling FPC trunk after revision 44849

2020-05-01 Thread Florian Klämpfl
Am 29.04.20 um 21:12 schrieb Marco van de Voort: Op 2020-04-29 om 19:50 schreef Jonas Maebe: 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

Re: [fpc-pascal] Question about compiling FPC trunk after revision 44849

2020-04-29 Thread Marco van de Voort
Op 2020-04-29 om 19:50 schreef Jonas Maebe: 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 Does "clean" have a valid return value of

Re: [fpc-pascal] Question about compiling FPC trunk after revision 44849

2020-04-29 Thread Victor Campillo via fpc-pascal
On 29/4/20 20:01, Sven Barth via fpc-pascal wrote: Jonas Maebe mailto:jo...@freepascal.org>> schrieb am Mi., 29. Apr. 2020, 19:50: So simply split it: make -j 9 clean make -j 9 all install Also you should specify FPMAKEOPT="-T 9" in addition to -j. Regards, Sven Ok, thank

Re: [fpc-pascal] Question about compiling FPC trunk after revision 44849

2020-04-29 Thread Sven Barth via fpc-pascal
Jonas Maebe schrieb am Mi., 29. Apr. 2020, 19:50: > 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

Re: [fpc-pascal] Question about compiling FPC trunk after revision 44849

2020-04-29 Thread Jonas Maebe
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,

[fpc-pascal] Question about compiling FPC trunk after revision 44849

2020-04-29 Thread Victor Campillo via fpc-pascal
Hi, 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