Hi,
try to compile a simple console app that uses System.Zlib
unit like
program aaa;
{$APPTYPE CONSOLE}
uses System.Zlib;
var
k: z_stream;
begin
deflate(k,0);
end.
will it be compiled correctly?
have you updated Linux SDK at Delphi IDE->Tools->Options->Deployment->SDK Manager
after calling sudo apt-get install zlib1g-dev
?