<p>Am 20.02.2012 23:37 schrieb "leledumbo" <<a href="mailto:leledumbo_cool@yahoo.co.id">leledumbo_cool@yahoo.co.id</a>>:<br>
><br>
> > The resolution of file and address can only be done if your code is a)<br>
> compiled with debug info and b) some code is available that can<br>
> translate the debug info to the output. The first is done by "-g", while<br>
> the second is done by adding the "l" option. The latter adds the unit<br>
> lineinfo or lnfodwrf depending on the debug format used by the compiler.<br>
><br>
> I'm aware of a) and my thought for b) is that BackTraceStrFunc would do it.<br>
> But I got the same thing happened with Everton, the function doesn't<br>
> translate debug info so all I get is simply addresses, without line<br>
> information.</p>
<p>The BackTraceStrFunc by default points to SysBackTraceStr which just converts addresses to strings. If you use "-gl" then one of the two lineinfo units is included depending on the chosen format of the debug info. This units in turn set BackTraceStrFunc to their own function, so that line and file info is now part of the returned string. So the savest way to ensure that BackTraceStrFunc returns more than just the address us to use "-gl".</p>

<p>Regards,<br>
Sven<br>
</p>