CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Aug 2003
    Location
    UK
    Posts
    41

    LNK 4204 missing debugging info in .pdb file

    Hi,


    I have a MFC application that I am trying to run, I included a .lib in the application and the tried to link it, which then produce the warning vc60.pdb is missing debugging information for reference module. Does anyone has any idea as to how to fix this problem.

    Thanks

  2. #2
    Join Date
    Nov 2002
    Location
    Sofia, Bulgaria
    Posts
    661
    Visual C++ Concepts: Building a C/C++ Program
    Linker Tools Warning LNK4204

    'filename' is missing debugging information for referencing module; linking object as if no debug info

    The .pdb file has an erroneous signature. The linker will continue to link the object without debug information. You may want to recompile the object file using the /Zi option.

    that's what is written in MSDN
    but why don't you try rebuilding the app first. I think it might help
    It's only when you look at an ant through a magnifying glass on a sunny day that you realise how often they burst into flames

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured