[fpc-pascal] Link on another host - how to collect and copy all files?

2021-12-13 Thread Joost van der Sluis via fpc-pascal
Hi all, I've got into troubles with a dynamic library on Linux. It uses pthreads but on the target system glibc 2.24 is used, while on my development machine 2.34 is being used. I've tried to copy the libc-libraries from the target system to my host and uxe -Xr -Xd, but it does not work. I

Re: [fpc-pascal] Link on another host - how to collect and copy all files?

2021-12-13 Thread Joost van der Sluis via fpc-pascal
Op 13-12-2021 om 18:27 schreef Jonas Maebe via fpc-pascal: On 13/12/2021 18:02, Joost van der Sluis via fpc-pascal wrote: I've got into troubles with a dynamic library on Linux. It uses pthreads but on the target system glibc 2.24 is used, while on my development machine 2.34 is being used

Re: [fpc-pascal] Dynamic array question

2023-01-11 Thread Joost van der Sluis via fpc-pascal
Vojtěch Čihák via fpc-pascal schreef op wo 11-01-2023 om 23:38 [+0100]: > is there a way how to have dynamic array "inside" another dynamic > array? Not in the way you want. You could define an 'array of array', though. Or an array of records that contain an array.   > program project1; > {$mode

<    1   2   3