Hi,
The following page is top of the list when you Google "GNU Pascal Compiler".
http://www.gnu-pascal.de/gpc/h-index.html
The copyright on the page has not been updated since 2005. The most recent version of GPC available on the site is 20041017. When I look for GPC, I end up finding it in three different places: one for MacOS (I have 20051116), one for Linux (I use 20041017), and one for Windows (I have 20070904 for MinGW). My cross-platform code has to include compiler directives like this:
{$ifdef __GPC_RELEASE__} {$if __GPC_RELEASE__ > 20050000} {$define INIT_CALL '_p__M0_init'} {$else} {$define INIT_CALL 'init_pascal_main_program'} {$endif} {$else} {$define INIT_CALL 'init_pascal_main_program'} {$endif} procedure initialize_main; external name INIT_CALL;
Where can I get the latest GPC binaries for MacOS, Linux, and MinGW? If the binaries are not available, where can I download the latest source files?
Yours, Kevan