tranleduy2000 / pascalnide

Pascal Compiler for Android
91 stars 25 forks source link

"Cannot find library `{{library}}`" if `{{library}}` uses `{{another-library1}}` which uses `{{another-library2}}` #78

Open EmilyGraceSeville7cf opened 5 months ago

EmilyGraceSeville7cf commented 5 months ago

Unit a.pas:

unit a;
interface

implementation

end.

Unit b.pas:

unit b;
interface
uses a;

implementation

end.

Main program main.pas (compilation fails):

program main;
uses b;
begin

end.