[fpc-pascal]FPC 1.0.8

2003-04-03 Thread Carl Eric Codere

>Hi,
>
>There were mostly memory allocation and segmentation fault problems, I
>just compiled sources which works great in Windows, Linux and DOS
>versions.

Greetings,
Can you isolate the bug and send specific code so i can try 
to fix it before 1.0.8 is released?

Carl


___
fpc-pascal maillist  -  [EMAIL PROTECTED]
http://lists.freepascal.org/mailman/listinfo/fpc-pascal


RE: [fpc-pascal]FPC 1.0.8

2003-04-03 Thread Kanzelsberger Pavel
Well Pixel32 is a huge project and it's a problem to locate the bug.
Simply when there are too many allocations FPC seems to run out of
memory, maybe heap growing doesn't work...

Is it possible to download 1.0.7 for BeOS/QNX somewhere so I can test
it?

Pavel


-Original Message-
From: Carl Eric Codere [mailto:[EMAIL PROTECTED] 
Sent: Thursday, April 03, 2003 11:33 AM
To: [EMAIL PROTECTED]
Subject: [fpc-pascal]FPC 1.0.8



>Hi,
>
>There were mostly memory allocation and segmentation fault problems, I 
>just compiled sources which works great in Windows, Linux and DOS 
>versions.

Greetings,
Can you isolate the bug and send specific code so i can try 
to fix it before 1.0.8 is released?

Carl


___
fpc-pascal maillist  -  [EMAIL PROTECTED]
http://lists.freepascal.org/mailman/listinfo/fpc-pascal

___
fpc-pascal maillist  -  [EMAIL PROTECTED]
http://lists.freepascal.org/mailman/listinfo/fpc-pascal


[fpc-pascal]class variable

2003-04-03 Thread milimeter
Hello, everybody

  Can any tell me if there's "Class Variable" in free pascal like in java?
  I mean, in java, you can declare a class memeber to be "static", all 
instance of this class share the same variable memory. Such a member can be 
accessed through class name without any instantiation.
  Does free pascal will add such a feature in the future?

  Thanks
  mili

___
fpc-pascal maillist  -  [EMAIL PROTECTED]
http://lists.freepascal.org/mailman/listinfo/fpc-pascal


Re: [fpc-pascal]class variable

2003-04-03 Thread Anton Tichawa
Hello!

>   Can any tell me if there's "Class Variable" in free pascal like in java?
>   I mean, in java, you can declare a class memeber to be "static", all
> instance of this class share the same variable memory. Such a member can be
> accessed through class name without any instantiation.
>   Does free pascal will add such a feature in the future?

AFAIK, class variables are not supported yet, nor are class properties. But 
it's possible to use class methods, which in turn access a global variable.

hth,

Anton.

--

"Adas Methode war, wie sich zeigen wird, Tagträume in offenbar korrekte 
Berechnungen einzuweben."

Doris Langley Moore: Ada, Countess of Lovelace (London 1977).

--

Ing. Anton Tichawa
Volkertstrasse 19 / 20
A-1020 Wien
phone: +43 1 218 97 59
mobil: +43 664 52 07 907; currently n/a
email: [EMAIL PROTECTED]

--
___
fpc-pascal maillist  -  [EMAIL PROTECTED]
http://lists.freepascal.org/mailman/listinfo/fpc-pascal


Re: [fpc-pascal]class variable

2003-04-03 Thread Peter Vreman
> Hello!
>
>>   Can any tell me if there's "Class Variable" in free pascal like in
>> java?
>>   I mean, in java, you can declare a class memeber to be "static", all
>> instance of this class share the same variable memory. Such a member can
>> be
>> accessed through class name without any instantiation.
>>   Does free pascal will add such a feature in the future?
>
> AFAIK, class variables are not supported yet, nor are class properties.
> But
> it's possible to use class methods, which in turn access a global
> variable.

Sorry that is wrong, static class members are supported, you need to
enable the static keyword using -St

I don't know what you mean with class properties.

-


___
fpc-pascal maillist  -  [EMAIL PROTECTED]
http://lists.freepascal.org/mailman/listinfo/fpc-pascal