On 26 Jan 2004 at 9:27, Peter Norton wrote:
Thank you
You're welcome.
Today tried Cygwin. Yes - binutils are fixed there and files are clear but ... it blows up my foo.pas to more then 1 MB - ~300 KB exe + 960 KB Cygwin1.dll !
You might try compiling with "-mno-cygwin", which will eliminate the cygwin1.dll dependency (presuming that you've installed the "mingw" support files via Cygwin setup).
Indeed, trying:
gpc -s -mno-cygwin test.pas
...on a simple "program test (output); begin writeln ('hello') end." source file yields a 237K executable with no Cygwin dependency.
-- Dave