Thread overview
Does anyone get line numbers in stack traces on Linux?
Jun 17, 2015
Atila Neves
Jun 17, 2015
Dicebot
Jun 17, 2015
weaselcat
Jun 17, 2015
weaselcat
Jun 17, 2015
ketmar
June 17, 2015
I thought it was because I was weird and I use gold as my linker, but ld.bfd produced the same results. The most I could find in bug reports was someone complaining it used to work but the consensus was that it never did?

Atila
June 17, 2015
druntime has never had support for file/line info in traces on Linux AFAIR
gdb usually saves the day
June 17, 2015
On Wednesday, 17 June 2015 at 07:53:16 UTC, Atila Neves wrote:
> I thought it was because I was weird and I use gold as my linker, but ld.bfd produced the same results. The most I could find in bug reports was someone complaining it used to work but the consensus was that it never did?
>
> Atila

addr2line
June 17, 2015
On Wednesday, 17 June 2015 at 11:07:29 UTC, weaselcat wrote:
> On Wednesday, 17 June 2015 at 07:53:16 UTC, Atila Neves wrote:
>> I thought it was because I was weird and I use gold as my linker, but ld.bfd produced the same results. The most I could find in bug reports was someone complaining it used to work but the consensus was that it never did?
>>
>> Atila
>
> addr2line

BTW, I use the backtrace API from glibc to dump a stack trace that is filtered through addr2line and demangled.
June 17, 2015
i have that.

with GCD. ;-)