Methods for Debugging DLLs

If you have the source for both the DLL and the calling program, open the project for the calling executable file and debug the DLL from there. If you load a DLL dynamically, you must specify it in the Additional DLLs category of the Debug tab in the Project Settings dialog box.

If you have the source for the DLL only, open the project that builds the DLL. Use the Debug tab in the Project Settings dialog box to specify the executable file that calls the DLL.

You can also debug a DLL without a project. For example, maybe you just picked up a DLL and source code but you don’t have an associated project or workspace. You can use the Open command on the File menu to select the .DLL file you want to debug. The debug information should be in either the .DLL or the related .PDB file. After Visual C++ opens the file, on the Build menu click Start Debug and Go to begin debugging.

To debug a DLL using the project for the executable file

  1. From the Project menu, click Settings.

    The Project Settings dialog box appears.

  2. Choose the Debug tab.

  3. In the Category drop-down list box, select General.

  4. In the Program Arguments text box, type any command-line arguments required by the executable file.

  5. In the Category drop-down list box, select Additional DLLs.

  6. In the Local Name column, type the names of DLLs to debug.

    If you are debugging remotely, the Remote Name column appears. In this column, type the complete path for the remote module to map to the local module name.

  7. In the Preload column, select the check box if you want to load the module before debugging begins.

  8. Click OK to store the information in your project.

  9. From the Build menu, click Start Debug and Go to start the debugger.

You can set breakpoints in the DLL or the calling program. You can open a source file for the DLL and set breakpoints in that file, even though it is not a part of the executable file’s project.

To debug a DLL using the project for the DLL

  1. From the Project menu, click Settings.

    The Project Settings dialog box appears.

  2. Choose the Debug tab.

  3. In the Category drop-down list box, select General.

  4. In the Executable For Debug Session text box, type the name of the executable file that calls the DLL.

  5. In the Category list box, select Additional DLLs.

  6. In the Local Module Name column, type the name of the DLLs you want to debug.

  7. Click OK to store the information in your project.

  8. Set breakpoints as required in your DLL source files or on function symbols in the DLL.

  9. From the Build menu, click Start Debug and Go to start the debugger.

To debug a DLL created with an external project

  1. From the Project menu, click Settings.

    The Project Settings dialog box appears.

  2. Choose the Debug tab.

  3. In the Category drop-down list box, select General.

  4. In the Executable For Debug Session text box, type the name of the DLL that your external makefile builds.

  5. Click OK to store the information in your project.

  6. Build a debug version of the DLL with symbolic debugging information, if you don’t already have one.

  7. Follow one of the two procedures immediately preceding this one to debug the DLL.