Re: mago-mi: GDB/MI compatible frontend for Mago debugger

2016-06-01 Thread Vadim Lopatin via Digitalmars-d-announce
On Wednesday, 1 June 2016 at 15:20:15 UTC, Bruno Medeiros wrote: Impressive work! I'm currently working on improving integration in VS. For this, I also needed a static library version of MagoNatDE. I just pushed my changes, I hope it doesn't break anything for you. If you want to stay in

Re: mago-mi: GDB/MI compatible frontend for Mago debugger

2016-06-01 Thread Bruno Medeiros via Digitalmars-d-announce
On 24/05/2016 07:34, Rainer Schuetze wrote: On 17.05.2016 10:06, Vadim Lopatin wrote: Hello, I'm working on GDB/MI compatible interface for Mago debugger on Windows. GDB/MI is line based machine interface for debugger. IDEs are using GDB via this interface. GDB/MI docs:

Re: mago-mi: GDB/MI compatible frontend for Mago debugger

2016-05-24 Thread Vadim Lopatin via Digitalmars-d-announce
On Tuesday, 24 May 2016 at 06:56:26 UTC, Rainer Schuetze wrote: On 24.05.2016 08:47, Vadim Lopatin wrote: On Tuesday, 24 May 2016 at 06:34:04 UTC, Rainer Schuetze wrote: If you want to stay in sync, please consider a PR with your changes to mago. Actually, I would prefer to use static

Re: mago-mi: GDB/MI compatible frontend for Mago debugger

2016-05-24 Thread Rainer Schuetze via Digitalmars-d-announce
On 24.05.2016 08:47, Vadim Lopatin wrote: On Tuesday, 24 May 2016 at 06:34:04 UTC, Rainer Schuetze wrote: If you want to stay in sync, please consider a PR with your changes to mago. Actually, I would prefer to use static versions of all Mago libraries. I really like that statically linked

Re: mago-mi: GDB/MI compatible frontend for Mago debugger

2016-05-24 Thread Vadim Lopatin via Digitalmars-d-announce
On Tuesday, 24 May 2016 at 06:34:04 UTC, Rainer Schuetze wrote: On 17.05.2016 10:06, Vadim Lopatin wrote: Hello, I'm working on GDB/MI compatible interface for Mago debugger on Windows. Impressive work! I'm currently working on improving integration in VS. For this, I also needed a

Re: mago-mi: GDB/MI compatible frontend for Mago debugger

2016-05-24 Thread Rainer Schuetze via Digitalmars-d-announce
On 17.05.2016 10:06, Vadim Lopatin wrote: Hello, I'm working on GDB/MI compatible interface for Mago debugger on Windows. GDB/MI is line based machine interface for debugger. IDEs are using GDB via this interface. GDB/MI docs: https://sourceware.org/gdb/onlinedocs/gdb/GDB_002fMI.html

Re: mago-mi: GDB/MI compatible frontend for Mago debugger

2016-05-23 Thread Vadim Lopatin via Digitalmars-d-announce
On Wednesday, 18 May 2016 at 18:02:12 UTC, Bruno Medeiros wrote: While DDT technically work oks with GDB (the GDB from mingw-w64 that is), you are right, there isn't a compiler on Windows that supplies debug info in the way GDB understands. See https://wiki.dlang.org/Debuggers. DMD produces

Re: mago-mi: GDB/MI compatible frontend for Mago debugger

2016-05-19 Thread Vadim Lopatin via Digitalmars-d-announce
On Friday, 20 May 2016 at 03:15:46 UTC, E.S. Quinn wrote: Unfortunately in this particular case, CDT's debugging is pretty fancy and is going to need most if not all of the MI. I also don't know which MI commands need to be supported to have it work with DDT. The thing is I didn't write the

Re: mago-mi: GDB/MI compatible frontend for Mago debugger

2016-05-19 Thread E.S. Quinn via Digitalmars-d-announce
Unfortunately in this particular case, CDT's debugging is pretty fancy and is going to need most if not all of the MI. On Thursday, 19 May 2016 at 13:29:14 UTC, Bruno Medeiros wrote: On 19/05/2016 08:41, Vadim Lopatin wrote: On Wednesday, 18 May 2016 at 18:02:12 UTC, Bruno Medeiros wrote:

Re: mago-mi: GDB/MI compatible frontend for Mago debugger

2016-05-19 Thread Bruno Medeiros via Digitalmars-d-announce
On 19/05/2016 08:41, Vadim Lopatin wrote: On Wednesday, 18 May 2016 at 18:02:12 UTC, Bruno Medeiros wrote: While DDT technically work oks with GDB (the GDB from mingw-w64 that is), you are right, there isn't a compiler on Windows that supplies debug info in the way GDB understands. See

Re: mago-mi: GDB/MI compatible frontend for Mago debugger

2016-05-19 Thread Vadim Lopatin via Digitalmars-d-announce
On Wednesday, 18 May 2016 at 18:02:12 UTC, Bruno Medeiros wrote: While DDT technically work oks with GDB (the GDB from mingw-w64 that is), you are right, there isn't a compiler on Windows that supplies debug info in the way GDB understands. See https://wiki.dlang.org/Debuggers. DMD produces

Re: mago-mi: GDB/MI compatible frontend for Mago debugger

2016-05-18 Thread Bruno Medeiros via Digitalmars-d-announce
On 17/05/2016 17:56, Vadim Lopatin wrote: On Tuesday, 17 May 2016 at 13:04:23 UTC, Bruno Medeiros wrote: Interesting. I was about to ask what was the main advantage over GDB? I reckon it is that Mago can debug executables with the COFF and/or OMF formats, right? (as opposed to GDB's DWARF

Re: mago-mi: GDB/MI compatible frontend for Mago debugger

2016-05-17 Thread Vadim Lopatin via Digitalmars-d-announce
On Tuesday, 17 May 2016 at 13:04:23 UTC, Bruno Medeiros wrote: Interesting. I was about to ask what was the main advantage over GDB? I reckon it is that Mago can debug executables with the COFF and/or OMF formats, right? (as opposed to GDB's DWARF format) Mago currently has the best D

Re: mago-mi: GDB/MI compatible frontend for Mago debugger

2016-05-17 Thread Bruno Medeiros via Digitalmars-d-announce
On 17/05/2016 09:06, Vadim Lopatin wrote: Hello, I'm working on GDB/MI compatible interface for Mago debugger on Windows. GDB/MI is line based machine interface for debugger. IDEs are using GDB via this interface. GDB/MI docs: https://sourceware.org/gdb/onlinedocs/gdb/GDB_002fMI.html Project