[fpc-devel] NONE smart link broken on windows?

Martin Frb lazarus at mfriebe.de
Fri Apr 24 17:12:57 CEST 2026


See the example below. Complied on Linux and windows.  (fpc 3.3.1)
    fpc  -O- -gw3   project.lpr

then using
   strings project | grep TLIST

On linux entries for *all* methods of TList are present.
On Windows that is NOT the case.

Why?



program Project1;
uses classes;
var l: TList;
begin
   l := TList.Create;
   l.add(nil);
end.



More information about the fpc-devel mailing list