On 09 Oct 2007, at 15:08, Tobias Giesen wrote:

I would like to compile FPC. Do I need a special make tool? When I
type make all, I get many error messages, apparently because the
make tool from Apple is not the right one.

No, it's because the makefile probably does not find your installed FPC, as its installation location (/usr/local/bin) is not in the path by default. Try

export PATH=/usr/local/bin/:"$PATH'
make all

or, if you use (t)csh:

setenv PATH /usr/local/bin:{$PATH}
make all


Jonas
_______________________________________________
fpc-pascal maillist  -  fpc-pascal@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Reply via email to