Re: [fpc-pascal] Just out of curiosity: Compiling FPC trunk and fpcmake

2022-03-21 Thread Karoly Balogh via fpc-pascal
Hi, On Mon, 21 Mar 2022, Michael Van Canneyt via fpc-pascal wrote: > > For years I have been using the same script to compile FPC, I have multiple > > version of FPC installed in the same machine, mainly my script do: > > > > make -j 9 clean all > > > > make -j 9 all install FPMAKEOPT="-T 9" > >

Re: [fpc-pascal] Just out of curiosity: Compiling FPC trunk and fpcmake

2022-03-21 Thread Jonas Maebe via fpc-pascal
On 21/03/2022 22:17, Victor Campillo via fpc-pascal wrote: make: -iVSPTPSOTO: Command not found Makefile:235: *** The Makefile doesn't support target -, please run fpcmake first.  Stop. I just run fpcmake before call "make clean all" and "make -j 9 all install", and everything works as

Re: [fpc-pascal] Just out of curiosity: Compiling FPC trunk and fpcmake

2022-03-21 Thread Marco van de Voort via fpc-pascal
On 21-3-2022 22:17, Victor Campillo via fpc-pascal wrote: make: -iVSPTPSOTO: Command not found Makefile:235: *** The Makefile doesn't support target -, please run fpcmake first.  Stop. Binary "fpc" not found. Maybe a different account or something else changed in your $PATH ?

Re: [fpc-pascal] Just out of curiosity: Compiling FPC trunk and fpcmake

2022-03-21 Thread Michael Van Canneyt via fpc-pascal
On Mon, 21 Mar 2022, Victor Campillo via fpc-pascal wrote: Hi, For years I have been using the same script to compile FPC, I have multiple version of FPC installed in the same machine, mainly my script do: make -j 9 clean all make -j 9 all install FPMAKEOPT="-T 9"

Re: [fpc-pascal] Just out of curiosity: Compiling FPC trunk and fpcmake

2022-03-21 Thread Jonas Maebe via fpc-pascal
On 21/03/2022 22:17, Victor Campillo via fpc-pascal wrote: For years I have been using the same script to compile FPC, I have multiple version of FPC installed in the same machine, mainly my script do: make -j 9 clean all This is wrong. You cannot safely run "clean" and "all" in parallel.

[fpc-pascal] Just out of curiosity: Compiling FPC trunk and fpcmake

2022-03-21 Thread Victor Campillo via fpc-pascal
Hi, For years I have been using the same script to compile FPC, I have multiple version of FPC installed in the same machine, mainly my script do: make -j 9 clean all make -j 9 all install FPMAKEOPT="-T 9" INSTALL_PREFIX=.../fpclazarus/fpc/cmp/3.3.1 OPT="-O- -O1 -gl"