Bo Berglund via lazarus <lazarus@lists.lazarus-ide.org> schrieb am Fr., 17.
März 2023, 13:54:

> On Fri, 17 Mar 2023 08:43:55 +0100 (CET), Michael Van Canneyt via lazarus
> <lazarus@lists.lazarus-ide.org> wrote:
>
> >FPC has not changed. It still works the same.
> >Everything that is under control of FPC is linked statically.
> >
> >But a complex GUI system like the LCL uses GTK/GDK/Qt and other
> libraries,
> >and those are dynamic, external libraries over which FPC or lazarus has
> no control.
>
> This aplication is a console (i.e NO GUI) application and it only uses
> these
> units:
>
> videosplitcmb.lpr:
>
> uses
>   {$IFDEF UNIX}
>     cthreads,
>   {$ENDIF}
>   Classes,
>   { you can add units after this }
>   sysutils,
>   utils,
>   runthread;
>
> and
>
> utils.pas:
>
> uses
>   Classes,
>   SysUtils,
>   Process;
>
> What is complex here?
>

Your code uses threads and on *nix systems that requires the C library.

Regards,
Sven
-- 
_______________________________________________
lazarus mailing list
lazarus@lists.lazarus-ide.org
https://lists.lazarus-ide.org/listinfo/lazarus

Reply via email to