vote up 2 vote down star
1

We've got this large application written in Delphi 5, and development is ongoing to this day. There is research going on into migrating to newer versions, but so far there is no success, as some 3rd party components have not been updated in ages and do not work on later versions.

In the meantime however people need to continue work on it. Now Delphi 5 IDE is no real treat. It's pretty bug-ridden and lacks a lot of features of contemporary IDEs which makes it difficult to use. Especially when it comes to debugging.

So I was wondering - would it be possible to use Visual Studio in the process? As far as I know the .PDB file format is pretty old and is well documented. Could it be possible to make the Delphi compiler to somehow generate a .PDB files for it's compiled results? Then the program could be debugged with Visual Studio, possibly to a much greater extent than in the original IDE.

Well, the absolute Holy Grail would be to move all development to VS, just keeping the compiler from Delphi, but I imagine that would be pretty impossible.

flag

44% accept rate
I really don't remember Delphi 5 as bug-ridden. Admittedly the debugging features left some wishes compared to VS. – Ulrich Gerhardt Oct 22 at 8:52
I think it is more important to solve the cause, in stead of work on the symptoms: Which 3rd party components are holding you back to migrate to newer versions of Delphi? – Jeroen Pluimers Oct 22 at 9:12
That I don't know exactly, that is not my area of work currently. But they tell that bright minds have studied it and are still working hard to find a solution. – Vilx- Oct 22 at 10:16
Then that's your first step: getting to know why. It will make it a lot easier than getting (very limited) PDB information and going the VS route (most likely having no local variables to look at all). I have done a lot of migrations, even skipping many Delphi versions. With a methodic approach, it is a job that can be done very well. – Jeroen Pluimers Oct 22 at 14:09

3 Answers

vote up 0 vote down

Apparently you can't. Seems that PDB is after all a propieritary Microsoft format without documentation, and as such there are no other tools generating it. Pity. :(

link|flag
Agreed. This is extremely frustrating to many tool vendors, not just us on the RAD Studio team. Maybe MS should support the Turbo Debugger format which is actually documented and we even provide a library to read them. :-). – Allen Bauer Oct 22 at 17:01
vote up 2 vote down

No, and neither can any other version of Delphi. You can use Map2Dgb to turn a detailed map file into a dbg file, though, and you can use that in WinDbg.

I'm curious what debugging features you're expecting to use in Visual Studio that aren't in Delphi 5 and that also don't rely on the IDE understanding the Delphi language. I was always rather pleased with Delphi 5.

link|flag
The inspector feature in the debugger often does not show values of different objects (especially in COM world). Sometimes the results are mind-boggling and do not at all depict what is happening in reality. I should also note that the project is both huge and messy, being something like 15 years old. There are...things...living in there. The compiler struggles. – Vilx- Oct 22 at 10:15
I know that more recent Delphi debuggers are much better in that respect. – Jeroen Pluimers Oct 22 at 14:07
Delphi's debugger can't load minidumps, can it? Minidumps are EXTREMELY useful. Your process crashes, freezes or misbehaves on the customer's machine? Get a minidump, load it, and you're in the debugger as if you're debugging that process. (Of course you can't do anything except examine call stacks and variables.) – CyberShadow Nov 2 at 21:46
Delphi doesn't load any Microsoft debugging formats. – Rob Kennedy Nov 2 at 21:54
vote up 0 vote down

I would recommend moving to a later version of Delphi. We have done this with various applications for clients. Moving to a newer version of Delphi is normally straightforward, but there were issues moving from D5 to D6 due to changes in the way components were handled (design time code being separated from run time) and the change to Unicode in D2009 was a bigger change.

The main thing is to sort out the third party components. We only ever use third party components that come with source so if the worst happens and the vendor disappears, we can still work on the components ourselves.

Which components are causing the issues?

link|flag
I told you - I don't know. I just know that it's a big problem that they haven't been able to solve for now (and they've spent quite a bit of effort on it). – Vilx- Oct 22 at 11:33
Sorry - missed your comment above. Too eager to post :-) – dcraggs Oct 22 at 11:52
Is ok. Happens. :) – Vilx- Oct 22 at 12:14

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.