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
[292 byte] By [jom20] at [2007-11-18 11:29:32]
# 1 Re: LNK 4204 missing debugging info in .pdb file
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
SeventhStar at 2007-11-9 12:01:48 >