Re: [lazarus] FPC unit in Lazarus

2007-12-08 Thread SteveG
John wrote: just to be pedantic, fpcmkcfg.exe (note first c in fpcmkcfg) Very true - caught myself on that one originally as well - damn cut and paste :) Isn't it in the bin\target subdirectory under the INSTALL_PREFIX dir ? you can run fpcmkcfg.exe -d

Re: [lazarus] FPC unit in Lazarus

2007-12-07 Thread John
SteveG wrote: Steps to use FPC svn build within Lazarus (Windows) 1 - Have a current Lazarus working binary installed (requires access to GNU utilitys within the c:\lazarus\fpc\?.?.?\bin\i386-win32 folder) 2 - Set system Path to include c:\lazarus\fpc\?.?.?\bin\i386-win32 3 - Download SVN

Re: [lazarus] FPC unit in Lazarus

2007-12-07 Thread SteveG
Steps to use FPC svn build within Lazarus (Windows) 1 - Have a current Lazarus working binary installed (requires access to GNU utilitys within the c:\lazarus\fpc\?.?.?\bin\i386-win32 folder) 2 - Set system Path to include c:\lazarus\fpc\?.?.?\bin\i386-win32 3 - Download SVN copy from FPC

Re: [lazarus] FPC unit in Lazarus

2007-12-04 Thread Vincent Snijders
SteveG schreef: Awhile ago I found that the following 2nd line (C:\lazarus\fpc\2.2.1\source\rtl\objpas\fmtbcd.pas) causes problems when using database access units in a dll. (note the space at front of line) {$r+,q+,s+} { $r-,q-,s-} Removing the space fixes the problem for me, though may

Re: [lazarus] FPC unit in Lazarus

2007-12-04 Thread SteveG
If I can use FPC (svn) and compile myself, is there a method / application which will extract the necessary files from the FPC build and create a tree structure to suit Lazarus? Or is there a reference describing how to edit Lazarus pathings to use the FPC build directly ? Thanks Vincent

Re: [lazarus] FPC unit in Lazarus

2007-12-04 Thread Vincent Snijders
SteveG schreef: If I can use FPC (svn) and compile myself, is there a method / application which will extract the necessary files from the FPC build and create a tree structure to suit Lazarus? Or is there a reference describing how to edit Lazarus pathings to use the FPC build directly ?

[lazarus] FPC unit in Lazarus

2007-12-03 Thread SteveG
Awhile ago I found that the following 2nd line (C:\lazarus\fpc\2.2.1\source\rtl\objpas\fmtbcd.pas) causes problems when using database access units in a dll. (note the space at front of line) {$r+,q+,s+} { $r-,q-,s-} Removing the space fixes the problem for me, though may cause others yet