Re: [fpc-pascal] Compile for WinCE 7, target ARM, CPU Cortex-A9

2019-04-09 Thread LacaK
Note that you probably don't need two different cross compilers if your cpu-OS target is the same Target CPU family is same: "arm", but Target processor is not the same: "ARMv4" versus "ARMv7" ... So I do not know if this requires two pre-compiled

[fpc-pascal] include bug?

2019-04-09 Thread Ryan Joseph
I’m trying to use relative include paths instead of using the compiler flag but I’m now having problems where other include files are not detecting changes unless I delete the .o files. Is this a known bug? {$i include/darwin/ptypes.inc} <— the compiler IS detecting changes in these file {$i i

Re: [fpc-pascal] Compile for WinCE 7, target ARM, CPU Cortex-A9

2019-04-09 Thread Cyrax
On 9.4.2019 12.45, LacaK wrote:     Note that you probably don't need two different cross     compilers if your cpu-OS target is the same     Target CPU family is same: "arm", but Target processor is not     the same: "ARMv4" versus "ARMv7" ...     So I do not know