c++ - How to NOT generate debug information for specific source files / source sections? -
What is a way to create a debug build of our Vs2005 (C ++) project and exclude specific modules or code sections?
In Debug Info? Or does VS have the option to create multiple PDB files from the same project?
It seems that our generated PDB file is getting very large to handle / produce correctly for Visual Studio and the result is that VS Tells us that debug does not match the symbols Sometimes it works, sometimes it does not happen.
I check the option to split the project into several smaller projects, but I think it will take some time but it would be good if we can debug the current project as it is in the meantime.
I agree with Andreas' comment - you are almost certainly dividing the project better.
However, if you right-click on the C ++ source file (it does not appear that you can do it with C #), and open the properties on which you have full control That's how this specific file (or files) was created.
Comments
Post a Comment