Debug c++ dll vs2005 with test exe ( No debug Info )

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • robygus
    New Member
    • Mar 2010
    • 3

    Debug c++ dll vs2005 with test exe ( No debug Info )

    Hello

    I'm tring to debug a DLL using an application ( I'm creating an extension of postgres function ), but when I try to run debug dll the vs2005 say me "no debug information for application pgadmin.exe, symbols not found". I don't know the way pgadmin.exe has been compiled , but I have to debug extension and I don't know how to do it.
    Please Help !!!!!

    Bye
    Robygus
  • weaknessforcats
    Recognized Expert Expert
    • Mar 2007
    • 9214

    #2
    Do you have a debug version of the DLL?

    A release version does not contain the embedded information required to support the debugger.

    Comment

    • robygus
      New Member
      • Mar 2010
      • 3

      #3
      Yes the dll has been compiled with debug option ( I created a VS2005 application and I try to debug dll and everithing works fine ) but when I try to debug DLL with the PGadmin.exe VS2005 gives me an error "No debug information Symbols not found"

      Comment

      • weaknessforcats
        Recognized Expert Expert
        • Mar 2007
        • 9214

        #4
        Is there a copy of the .pdb file from the dll project in the same folder as the dll?

        That is your program database for debugging the dll.

        There is also a .pdb for the project that uses the dll. I believe you need both .pdb files in the debug folder of the project being debugged.

        Comment

        Working...