Re: [fpc-pascal] Cross-compiler for ARM64 on Windows available?

2022-06-23 Thread Tomas Hajny via fpc-pascal
On 2022-06-23 19:58, Travis Siegel via fpc-pascal wrote: There actually is a 64-bit version of xp, but it's not compatible with very much.  Apparently, it didn't have an emulator in it, so running 32-bit software wasn't something it did by default.  I never did figure out if it could be made to r

Re: [fpc-pascal] Cross-compiler for ARM64 on Windows available?

2022-06-23 Thread Travis Siegel via fpc-pascal
There actually is a 64-bit version of xp, but it's not compatible with very much.  Apparently, it didn't have an emulator in it, so running 32-bit software wasn't something it did by default.  I never did figure out if it could be made to run 32-bit software or not, I just gave up on it, (more

[fpc-pascal] Operator not overloaded

2022-06-23 Thread Thomas Kurz via fpc-pascal
Hello, I have tried to create an example as minimalistic as possible. I have three files: *** file: pathfinding.pas *** unit PathFinding; {$mode objfpc} interface type generic TAStar = class (TObject) public function FindPath (const AStart: T; const ADestination: T): Boolean; virtual; end