I had a big problem with breakpoints not being hit in a Delphi 6 DirectShow DLL. I would load the DLL (AX) in the IDE and run it with Graph Edit as the Host program and none of the breakpoints would trigger. I tried moving the FastMM4 DLL to the project directory, removed FastMM4 completely, turned Debug DCUs on and off, cleaned the project directories, unregistering and re-registering the DLL, everything I could think of. Nothing worked. Every time I ran the host program I saw my DLL load with the message "No debug info" in the event viewer. Then in a desperate Google search I found a post for C++ Builder that recommended trying the "remote debug symbols" linker option:

Project -> Options -> Linker (Tab) -> Exe and DLL options (group box) -> "Include Remote Debug Symbols" (checked it)

Suddenly my breakpoints started being hit. Here are my questions:

1) Why did this work? Is it because of the option or because this option triggered some other Compiler/Linker operation that fixed things? I would like to know so I can reliably fix this problem in the future when it happens again.

2) Are the remote debug symbols something a hostile programmer could use to deep trace my program? In other words, are they a security risk if left lying around?

link|improve this question

63% accept rate
Dont struggle, publish source code. – user539484 Jan 25 at 8:02
What version of Delphi? Older Delphis aren't so good at debugging DLLs. I've sometimes found it necessary to put the host exe in the same folder as the DLL. It certainly should be enough compile the DLL with standard debug options. No need for remote symbols. – David Heffernan Jan 25 at 9:21
@DavidHeffernan. Delphi 6. – Robert Oschler Jan 25 at 10:07
Yes, that's the version I've encountered problems with. – David Heffernan Jan 25 at 10:08
feedback

1 Answer

1) It was because of the option. Without the debug symbol information, your IDE has no idea where to set your breakpoints. Debug DCUs has nothing to do with it -- that option links in a different set of VCL DCUs that contain debug information so you can set breakpoints. Helpful hint: depending on the version of Delphi, those DCUs are not, in fact, always in sync with their debug symbols.

2) Debug symbols/map files should not go out in a release, especially if the information handled by the program is sensitive in any way. This goes for any programming language.

If you need the ability to diagnose your software after it's release, incorporate exception, error, and assertion handling that gives you sufficient information to triage bugs from a log.

link|improve this answer
But all my other projects do work without remote debug symbols. I have debug symbols ("debug information") included with them, but not remote debug symbols which is what got things working for the DLL. Also, can I infer from your answer that tools like MadExcept and the JVCL stack trace are not dependent on debug symbols being present then? I would prefer to release my code with the JVCL stack trace (JDBG) symbols included so I can get a stack trace with my Exceptions when an Exception occurs. – Robert Oschler Jan 24 at 23:50
1  
This doesn't seem to answer the question. It is certainly possible to debug DLLs without remote debug symbols. – David Heffernan Jan 25 at 9:20
feedback

Your Answer

 
or
required, but never shown

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