On Mon, 3 Feb 2020, Zamrony P. Juhara via fpc-pascal wrote:
From my location
https://forum.lazarus.freepascal.org/
takes long time to load or sometime timeout. Does it happens to anyone?
Something similar happened to the main FPC server.
We have the impression that the servers are under a D
>From my location
https://forum.lazarus.freepascal.org/
takes long time to load or sometime timeout. Does it happens to anyone?
Zamrony P. Juhara
Fano Framework, pascal web framework, https://fanoframework.github.io
___
fpc-pascal maillist - fpc-pascal
Hello Martin.
Wow.
Indeed, I did a check in mse code and only exists, in msearrayutils.pas:
function aligntoptr(p: pointer): pointer; inline;
begin
{$ifdef FPC_REQUIRES_PROPER_ALIGNMENT}
result:= align(p,sizeof(p));
{$else FPC_REQUIRES_PROPER_ALIGNMENT}
result:=p;
{$endif FPC_REQUIRES_PROPER_A
I Am very sorry. I have thought, that when I only change The subject of The
message, so that it will start new thread. I will be careful on this. So
instead pressinf reply to all on other thread, I will always type A new
message. I Am very sorry, some times I forget on The mailing list techniques
a
Am 02.02.2020 um 14:06 schrieb Mgr. Janusz Chmiel via fpc-pascal:
Dear specialists here,
How complex would be to recode Free Pascal compiler for ARM and
ARM64 Bit so it would be fully compatible with Android Bionic library, so it
would be executed as A external app from some Android app w
Am 02.02.2020 um 12:49 schrieb Ryan Joseph via fpc-pascal:
On Feb 2, 2020, at 3:23 PM, Sven Barth via fpc-pascal
wrote:
As I had explained in the other thread some months ago interfaces in Object Pascal mean
literally that the type can be cast to the specified interfaces. Parent interfaces
Dear specialists here,
How complex would be to recode Free Pascal compiler for ARM and
ARM64 Bit so it would be fully compatible with Android Bionic library, so it
would be executed as A external app from some Android app which have GUI?
Sure. There is even Termux which can run many Linux
> On Feb 2, 2020, at 3:23 PM, Sven Barth via fpc-pascal
> wrote:
>
> As I had explained in the other thread some months ago interfaces in Object
> Pascal mean literally that the type can be cast to the specified interfaces.
> Parent interfaces are *not* part of this. If you want this you nee
Ryan Joseph via fpc-pascal schrieb am
So., 2. Feb. 2020, 03:37:
> Why doesn't this compile? IClassName2 descends from IClassName1 so
> shouldn't TClassName be compatible with IClassName1?
>
>
>
> {$mode objfpc}
> {$interfaces corba}
>
> program test;
>
> t