A Question about lib files
-
Dear all I add one lib file to my VC++ 6 project. and want to debug my project. But I can not add debug information of lib file to debug information of my project. I have the source code of lib file also. If you know how I can remove this error please let me know. Regards Monhi
-
Dear all I add one lib file to my VC++ 6 project. and want to debug my project. But I can not add debug information of lib file to debug information of my project. I have the source code of lib file also. If you know how I can remove this error please let me know. Regards Monhi
-
I should remove "Use program database" option to compile the code, In this situation I cannot debug the program. If I make that option active then I get following error. atapid.lib(tapireq.obj) : fatal error LNK1202: "D:\users\TCMon_1\Debug\vc60.pdb" is missing debugging information for referencing module I should find one way to add debug information of lib file to project which I want to add lib file to that. Regards Monhi
-
I should remove "Use program database" option to compile the code, In this situation I cannot debug the program. If I make that option active then I get following error. atapid.lib(tapireq.obj) : fatal error LNK1202: "D:\users\TCMon_1\Debug\vc60.pdb" is missing debugging information for referencing module I should find one way to add debug information of lib file to project which I want to add lib file to that. Regards Monhi
Have you tried rebuilding the entire project, just in case things have gotten a little confused ? regards,
Jonathan Wilkes Darka[Xanya.net]
-
Have you tried rebuilding the entire project, just in case things have gotten a little confused ? regards,
Jonathan Wilkes Darka[Xanya.net]
-
I should remove "Use program database" option to compile the code, In this situation I cannot debug the program. If I make that option active then I get following error. atapid.lib(tapireq.obj) : fatal error LNK1202: "D:\users\TCMon_1\Debug\vc60.pdb" is missing debugging information for referencing module I should find one way to add debug information of lib file to project which I want to add lib file to that. Regards Monhi
Hi, I think this is because both the application and library refers to the same debug info file "VC60.pdb" and build seperately causing only the application's debug information stored. Since you have the code for library, in the project setting change the Debug database file name to the project name, say atapid.pdb rather than vc60.pdb. or do the same for your application yourApp.pdb. Best regards Rajkumar
-
Hi, I think this is because both the application and library refers to the same debug info file "VC60.pdb" and build seperately causing only the application's debug information stored. Since you have the code for library, in the project setting change the Debug database file name to the project name, say atapid.pdb rather than vc60.pdb. or do the same for your application yourApp.pdb. Best regards Rajkumar
-
May you please give me the place which I can change debug information file name in visual C++ 6.00. In which menu. Regards Monhi
In project->settings->link(tab)->customize(in category list box)->program database name(edit box)
-
In project->settings->link(tab)->customize(in category list box)->program database name(edit box)
-
Dear all I add one lib file to my VC++ 6 project. and want to debug my project. But I can not add debug information of lib file to debug information of my project. I have the source code of lib file also. If you know how I can remove this error please let me know. Regards Monhi
Run the source code of the lib file in debug mode. Use the created lib file in your project and rebuild the project. Now I think you can debug the lib from your project.