[fpc-devel]a bug is found

"?=Ozerski Pavel=?koi8-r?Q?" ozerski at list.ru
Thu Apr 22 08:30:33 CEST 2004


I submitted a bug in the FPC bug list (as #3061).
I would discuss it a little because now I write a stuff to radically solve problems with indexes export. Maybe, these two problems need to be solved as one complex? But I'm understandig that big changes in the compiler code may cause new problems.

Sincerely, Pavel.

Description:
FPC doesn't support exports clause in units. That breaks Delphi compatibility and may cause serious problems by writing or porting big library projects.

{ Source provided for Free Pascal Bug Report 3061 }
{ Submitted by "Pavel V. Ozerski" on  2004-04-22 }
{ e-mail: ozerski at list.ru }
unit unit1;
interface
implementation
procedure MyProc;
 begin
 end;
exports
 MyProc name 'MyProc';
end.

library myLib;
uses
 unit1;
begin
end.




More information about the fpc-devel mailing list