Jump to page: 1 2
Thread overview
New debugger coming soon!
Aug 09, 2010
Aldo Nunez
Aug 09, 2010
Walter Bright
Aug 09, 2010
Arth Lloyd Flores
Aug 09, 2010
awishformore
Aug 09, 2010
Stephan
Aug 09, 2010
Aldo Nunez
Aug 10, 2010
Trass3r
Aug 10, 2010
Rainer Schuetze
Aug 11, 2010
Stanislav Blinov
Aug 13, 2010
Aldo Nunez
Aug 09, 2010
Eric Poggel
Aug 10, 2010
Jason House
Aug 10, 2010
Sean Kelly
Aug 10, 2010
Aldo Nunez
Aug 11, 2010
F. Almeida
Aug 13, 2010
Aldo Nunez
August 09, 2010
I'll be posting the D debugger I've been working on at dsource this week. It'll be a set of debugging libraries that you can build your own debugger with, along with a Debug Engine plug-in for Visual Studio.

I'll post another announcement as soon as it's available.
August 09, 2010
Aldo Nunez wrote:
> I'll be posting the D debugger I've been working on at dsource this week. It'll
> be a set of debugging libraries that you can build your own debugger with, along
> with a Debug Engine plug-in for Visual Studio.
> 
> I'll post another announcement as soon as it's available.

This is great news!
August 09, 2010
Cool! I can't wait to see it... Is this for v2.x?

On Mon, Aug 9, 2010 at 12:45 PM, Aldo Nunez <aldoSkipallthisNunez1@gmail.com
> wrote:

> I'll be posting the D debugger I've been working on at dsource this week.
> It'll
> be a set of debugging libraries that you can build your own debugger with,
> along
> with a Debug Engine plug-in for Visual Studio.
>
> I'll post another announcement as soon as it's available.
>



-- 
-Arth


August 09, 2010
On 09/08/2010 06:45, Aldo Nunez wrote:
> I'll be posting the D debugger I've been working on at dsource this week. It'll
> be a set of debugging libraries that you can build your own debugger with, along
> with a Debug Engine plug-in for Visual Studio.
>
> I'll post another announcement as soon as it's available.

Very nice, sir!

Does the plug-in work for all versions of VS? And is it supposed to work with Visual D?

/Max
August 09, 2010
On 09.08.2010 15:33, awishformore wrote:
> On 09/08/2010 06:45, Aldo Nunez wrote:
>> I'll be posting the D debugger I've been working on at dsource this
>> week. It'll
>> be a set of debugging libraries that you can build your own debugger
>> with, along
>> with a Debug Engine plug-in for Visual Studio.
>>
>> I'll post another announcement as soon as it's available.
>
> Very nice, sir!
>
> Does the plug-in work for all versions of VS? And is it supposed to work
> with Visual D?
>
> /Max

I hope it is, what we don't need is yet another possibility to code and debug D. VisualD + cv2pdb works very well for me. i hope the two developers are trying to sync both approaches.
August 09, 2010
On Mon, 09 Aug 2010 06:33:50 -0700, awishformore <awishformore@nospam.plz> wrote:

> On 09/08/2010 06:45, Aldo Nunez wrote:
>> I'll be posting the D debugger I've been working on at dsource this week. It'll
>> be a set of debugging libraries that you can build your own debugger with, along
>> with a Debug Engine plug-in for Visual Studio.
>>
>> I'll post another announcement as soon as it's available.
>
> Very nice, sir!
>
> Does the plug-in work for all versions of VS? And is it supposed to work with Visual D?
>
> /Max

It's for D 2. From the beginning I had no intent to make it compatible with D 1.

The Visual Studio plug-in is for 2005, 2008, and 2010. I haven't looked into if it works for earlier versions.

My understanding is that VisualD could easily be made to use this plug-in, instead of the built-in C++ one. It should be a matter of switching the GUID for the Debug Engine used.

Part of the reason I wanted to make this debugger is that using cv2pdb, although a great tool that helped fill a need, means:
1. Relying on the built-in C++ debugger, which means you get a C++ expression evaluator.
2. Using undocumented interfaces.
3. Using Microsoft binaries that might not be redistributable (I'm not completely sure of this).

-- 
Using Opera's revolutionary email client: http://www.opera.com/mail/
August 09, 2010
On 8/9/2010 12:45 AM, Aldo Nunez wrote:
> I'll be posting the D debugger I've been working on at dsource this week. It'll
> be a set of debugging libraries that you can build your own debugger with, along
> with a Debug Engine plug-in for Visual Studio.
>
> I'll post another announcement as soon as it's available.

It would also be great to have Descent integration (crosses fingers)
August 10, 2010
> Part of the reason I wanted to make this debugger is that using cv2pdb, although a great tool that helped fill a need, means:
> 1. Relying on the built-in C++ debugger, which means you get a C++ expression evaluator.

That sounds really good.
August 10, 2010
Aldo Nunez wrote:
> I'll be posting the D debugger I've been working on at dsource this week. It'll
> be a set of debugging libraries that you can build your own debugger with, along
> with a Debug Engine plug-in for Visual Studio.
> 
> I'll post another announcement as soon as it's available.

If well executed, this may as well be a huge contribution to D's success.

Andrei
August 10, 2010
Which platforms are supported? Linux? OSX? FreeBSD? I hope it isn't Windows-only!

Aldo Nunez Wrote:

> I'll be posting the D debugger I've been working on at dsource this week. It'll be a set of debugging libraries that you can build your own debugger with, along with a Debug Engine plug-in for Visual Studio.
> 
> I'll post another announcement as soon as it's available.

« First   ‹ Prev
1 2