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
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 m
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 yo
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 of
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, r
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 t