[fpc-pascal] RSS?

2008-04-07 Thread M. Utku Karataş
Hi gents, Is this mailing list also available in RSS?? Thanks, Utku. ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

[fpc-pascal] Nil referancing doesn't raise exceptions in thread context under Linux...

2007-05-20 Thread M. Utku Karataş
Hi everyone, I am using version 2.1.1 on Linux and calling this procedure in a thread: procedure TestNullRef; var p: ^integer; begin p := nil; try p^ := 13; // now this should raise exc! ShowMessage(IntToStr(p^)); except ShowMessage('TestNullRef: ' + Exception(Excep

[fpc-pascal] Re: Re: GDB issues with the latest unstable FPC...

2007-03-02 Thread m utku
y be looking for the wrong symbol name. It will be called > something like P$PROGRAM_FOOBAR Nope, no smartlinking and no "foobar" text in the map file FYI. -- Regards, M. Utku Karatas ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

[fpc-pascal] Re: GDB issues with the latest unstable FPC...

2007-03-02 Thread m utku
Jonas Maebe <[EMAIL PROTECTED]> wrote in news:[EMAIL PROTECTED]: > > On 02 Mar 2007, at 08:56, m utku wrote: > >> I am using an unstable fpc version(2.1.1 -- snapshot from last >> week). While debugging my specific project, GDB(6.4 - Debian Sarge) >> see

[fpc-pascal] Re: Equivalent of Delphi map files...

2007-03-02 Thread m utku
Hmm. And then how to redirect the linker's standard output to a file named the same as a the source? Vinzent, passing this: "-k-Map mapfile" to fpc does the trick. Thanks to Jonas... Regards, Utku. ___ fpc-pascal maillist - fpc-pascal@lists.fre

[fpc-pascal] Equivalent of Delphi map files...

2007-03-02 Thread m utku
Hello again :), I just forgot to ask; Delphi has an option to generate a so called "map file" that contains the function addresses matched with the function names when an executable compiled. What would be the equivalent FPC functionality for this? Regards, Utku. __

[fpc-pascal] GDB issues with the latest unstable FPC...

2007-03-02 Thread m utku
Hi all, I am using an unstable fpc version(2.1.1 -- snapshot from last week). While debugging my specific project, GDB(6.4 - Debian Sarge) seems to be wrong about the function locations so I cannot use breakpoints. I'd guess that this is a fpc bug about generated debug symbols. Is this is a k

[fpc-pascal] Re: Exception callstacks, backtracks...

2007-02-07 Thread m utku
oint of where exception occured. Is there any way for that? Thanks, M. Utku Karatas ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://lists.freepascal.org/mailman/listinfo/fpc-pascal

[fpc-pascal] Exception callstacks, backtracks...

2007-02-07 Thread m utku
hich makes me mad when I need to debug for some crash just to get a callstack :) So, before I start rolling a solution, what are your advices and where should my efforts go so that the community would also benefit? -- Best regards. M. Utku Karatas ___