I have an application written in Delphi 7 which uses a c++ dll written in BCB 5.
I want to debug this dll from the Delphi IDE is this possible?

If it's possible which are the steps to debug?

As additional information I have the full source code of the dll.

link|improve this question

Have you tried it? I think you should try it first and post your problems, instead of asking people if it will work. It's easy to find out. – Warren P May 30 '11 at 21:56
1  
@Warren i am asking because i don't know how do this. I think which is nothing wrong with ask that. – Salvador May 30 '11 at 22:01
I agree - it may or may not be possible and you could waste a lot of time trying to do the impossible - why not find out first. – Mikey Jun 2 '11 at 2:41
feedback

3 Answers

up vote 4 down vote accepted

It has been a while since I have dealt with C++ / Delphi together. But if I remember correctly, you can use the BCB IDE to run the Delphi application (compiled already) that uses your DLL. Basically, in your project settings in BCB, you can set a program to run when you click the "run" button, and I believe that you will be able to set breakpoints and stuff that will be caught when functions of your DLL are being called by that application. Still, this implies that you have BCB.

link|improve this answer
feedback

My recollection, and it's been a while since I last tried this, is that you need the C++ Builder IDE to do this.

link|improve this answer
feedback

It should be possible:

I have done it quite often to debug a BCB5 dll within the Delphi 6 IDE. My delphi 6 application uses the DLL and I can then step from the delphi code into the bcb code (and back). So I might work with Delphi 7 too.

Delphi isn't configured by default to do that. At that time I found an explanation on the web how to do it. Not sure, but it might have been the following page: http://www.delphifaq.com/faq/delphi/delphi_ide/f178.shtml

You will also need to compile the dll in debug mode and to indicate the path to the source code of the dll in the project options of your delphi application.

link|improve this answer
"d I can then step from the delphi code into the bcb code (and back)" - do you mean that in the Delphi IDE you can step through C++ source code? – Mikey Jun 1 '11 at 3:37
@Mikey: Exactly, in the Delphi IDE I can step through the C++ source code, put breakpoints, display the content of the variables... – Name Jun 6 '11 at 8:37
interesting - 'you learn something new every day'. – Mikey Jun 6 '11 at 13:55
feedback

Your Answer

 
or
required, but never shown

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