Re: D2 and gdb

2011-01-26 Thread vnm
On 01/26/2011 12:28 AM, Steven Schveighoffer wrote: On Tue, 25 Jan 2011 15:44:59 -0500, vnm wrote: Why gdb can't show line information and why it shows symbols in mangled form ? Is this software issues or I'm doing something wrong ? AFAIK, gdb 7.2 integrated some patch for D support (including

Re: D2 and gdb

2011-01-25 Thread Robert Clipsham
On 25/01/11 20:44, vnm wrote: Hi! Is there any support of D2 in gdb 7.2 ? Little example to clarify my question: // file main.d int glVar = 0x; void main() { glVar = 0x; } --

Re: D2 and gdb

2011-01-25 Thread Steven Schveighoffer
On Tue, 25 Jan 2011 15:44:59 -0500, vnm wrote: Why gdb can't show line information and why it shows symbols in mangled form ? Is this software issues or I'm doing something wrong ? AFAIK, gdb 7.2 integrated some patch for D support (including symbols demangling feature). This patch was D1 on

D2 and gdb

2011-01-25 Thread vnm
Hi! Is there any support of D2 in gdb 7.2 ? Little example to clarify my question: // file main.d int glVar = 0x; void main() { glVar = 0x; } I compiled