I managed (with lots of pain, tried manjaro and others, but they do not handle multiscreen well and lots of other troubles like manjaro refusing to install on the external ssd) to install linux mint on a usb connected ssd. linux mint looks ok.
In lazarus for windows run the following program :
program pgmInstanceSize;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}
cthreads,
{$ENDIF}
Classes
{ you can add units after this };
var
vList: TList;
begin
vList := TList.Create;
writeLn(TList.InstanceSize, ' ', vList.InstanceSize);
vList.Free;
ReadLn;
end.
and it displays
32 32
and wait for return.
In lazarus linux running this program doesn't show anything. What do I need to get the console to show the values and wait for return ?