Re: [fpc-pascal] Unknown runtime error 202

2006-07-27 Thread Wolfram Kläger
Michael wrote: > .. FileName/Linenumber info is only available through debug information. > It's not an interpreted language, but compiled language. Thanks for explanation. Wolfram ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://list

Re: [fpc-pascal] Unknown runtime error 202

2006-07-27 Thread Burkhard Carstens
Am Donnerstag, 27. Juli 2006 15:15 schrieb Wolfram Kläger: > Vinzent wrote: > > > BTW, do you know why exceptions donŽt return a line number? > > > > Because you forgot to include the "-gl" switch for automatically > > including the line info unit? > > As I understand it, this option is only helpfu

Re: [fpc-pascal] Unknown runtime error 202

2006-07-27 Thread Michael Van Canneyt
On Thu, 27 Jul 2006, Wolfram Kläger wrote: Vinzent wrote: BTW, do you know why exceptions don?t return a line number? Because you forgot to include the "-gl" switch for automatically including the line info unit? As I understand it, this option is only helpful when you are struggling with

Re: [fpc-pascal] Unknown runtime error 202

2006-07-27 Thread Wolfram Kläger
Vinzent wrote: > > BTW, do you know why exceptions donŽt return a line number? > > Because you forgot to include the "-gl" switch for automatically > including the line info unit? As I understand it, this option is only helpful when you are struggling with the debugger. My question is: What is

Re: [fpc-pascal] Unknown runtime error 202

2006-07-27 Thread Vinzent Hoefler
On Thursday 27 July 2006 12:05, Wolfram Kläger wrote: > Vinzent wrote: > > .. According to the documentation, the size of the > > local variables (allocated on the stack) should not exceed 32 > > KiBytes for portability reasons. > > Thanks a lot. And I thought, I did RTFM often enough ... > > BTW,

Re: [fpc-pascal] Unknown runtime error 202

2006-07-27 Thread Wolfram Kläger
Vinzent wrote: > .. According to the documentation, the size of the > local variables (allocated on the stack) should not exceed 32 KiBytes > for portability reasons. Thanks a lot. And I thought, I did RTFM often enough ... BTW, do you know why exceptions donŽt return a line number? As I under

Re: [fpc-pascal] Unknown runtime error 202

2006-07-26 Thread Vinzent Höfler
Wolfram Kläger wrote: I had this error two or three times these days. I managed to get rid > of it by moving a local method variable to a field. Example: class.method var d3 : array[ .., .., ..] of ... begin ... Works, if length(d3) < unknown limit. When I get the unknown runtime > error 20

[fpc-pascal] Unknown runtime error 202

2006-07-26 Thread Wolfram Kläger
I had this error two or three times these days. I managed to get rid of it by moving a local method variable to a field. Example: class.method var d3 : array[ .., .., ..] of ... begin ... Works, if length(d3) < unknown limit. When I get the unknown runtime error 202 instead, I rearrange d3 to