Re: New debugger for D!!!

2014-01-29 Thread Sarath Kodali
On Wednesday, 29 January 2014 at 07:06:43 UTC, Andrei Alexandrescu wrote: On 1/28/14 4:26 PM, Meta wrote: On Wednesday, 29 January 2014 at 00:07:00 UTC, Namespace wrote: I did not do any research on name; just shortened debug to dbg :) I'm bad at coming up with good names, so any suggestions

Re: New debugger for D!!!

2014-01-28 Thread Sarath Kodali
On Tuesday, 28 January 2014 at 05:19:13 UTC, Andrei Alexandrescu wrote: This does sound very interesting - and don't forget to submit a talk on the topic to DConf!!! Andrei Can't commit but will try :( too many things in my hand ...

Re: New debugger for D!!!

2014-01-28 Thread Sarath Kodali
On Tuesday, 28 January 2014 at 10:03:03 UTC, Jacob Carlborg wrote: On 2014-01-28 04:00, Sarath Kodali wrote: Next month I will be releasing an alpha version with support for Linux, x86, Elf+Dwarf, DMD and GCC. I'm waiting for the OS X version :) But in the coming months I will add support

Re: New debugger for D!!!

2014-01-28 Thread Sarath Kodali
On Tuesday, 28 January 2014 at 06:34:50 UTC, dennis luehring wrote: Am 28.01.2014 04:00, schrieb Sarath Kodali: I'm also planning to add a JSON or CSV output format so that it will be easy to parse the output when integrating with IDEs. So I would recommend that you wait till I release 1.0

Re: New debugger for D!!!

2014-01-28 Thread Sarath Kodali
On Tuesday, 28 January 2014 at 15:23:28 UTC, Idan Arye wrote: On Monday, 27 January 2014 at 16:42:14 UTC, Sarath Kodali wrote: p1.1 SUSPENDED [D main in dbg.d] 179: auto cmd = new Command(uiType); dbg step -o p1.1 STEPPED [D main in dbg.d] 180: cmd.rc_exec(GLOBAL_DBGRC_FILE

Re: New debugger for D!!!

2014-01-28 Thread Sarath Kodali
On Tuesday, 28 January 2014 at 16:24:32 UTC, dennis luehring wrote: Am 28.01.2014 17:16, schrieb Sarath Kodali: I expect this is how it will be even with dbg and IDEs. The IDE will have a plugin that sits between the debugger and IDE. The communication between the IDE plugin and debugger

Re: New debugger for D!!!

2014-01-28 Thread Sarath Kodali
On Wednesday, 29 January 2014 at 01:13:12 UTC, Martin Nowak wrote: On Monday, 27 January 2014 at 16:42:14 UTC, Sarath Kodali wrote: I'm planning to release a new debugger for D sometime during end of February. This is a heads up for all those who are eagerly looking for a good debugger for D

New debugger for D!!!

2014-01-27 Thread Sarath Kodali
I'm planning to release a new debugger for D sometime during end of February. This is a heads up for all those who are eagerly looking for a good debugger for D. Here is a sample debug session: $ ./dbg ./dbg New session s1 (./dbg) started New process p1 (program dbg) created p1.1 SUSPENDED

Re: New debugger for D!!!

2014-01-27 Thread Sarath Kodali
On Monday, 27 January 2014 at 18:10:03 UTC, Alexander Bothe wrote: Which OSs are supported? Which compilers are supported, which debug info base is used? Is the info directly extracted from the executable aka Dwarf/CV4/PDB support? The sample debug session looks cool, so I'd really like to

Re: New debugger for D!!!

2014-01-27 Thread Sarath Kodali
On Monday, 27 January 2014 at 17:13:05 UTC, John Colvin wrote: Without the nasty line-wrapping: http://pastebin.com/1Z4T4vep woops, missed a couple: http://pastebin.com/t0sejnF9 Thanks!