[fpc-pascal] Compiling FPC 2.2 on Mac OS X / i386

Jonas Maebe jonas.maebe at elis.ugent.be
Tue Oct 9 15:14:25 CEST 2007


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



More information about the fpc-pascal mailing list