C++ -- How to enforce VC6.0 create PDB file on release mode

2.5k Views Asked by At

I need to know how to set up VC6.0 so that the builder will create PDB file even in release mode?

Thank you

3

There are 3 best solutions below

2
On BEST ANSWER

Go to Project Settings, Link. Select the Category: "General" and check the "Generate Debug Info" box. After that, you can select the Category "Debug" and change settings about the debug file.

Here is the links to MSDN documentation about PDB and DEBUG information

0
On

I believe there is simply a setting in Project Settings to "Generate Debug Info". And there is another place where you specify the type of debug info to produce: map file, PDB (program database), et al.

0
On

A very detailed explanation is found here: http://msdn.microsoft.com/en-us/library/aa260783%28v=vs.60%29.aspx