| description | Learn more about: /PDBSTRIPPED (Strip Private Symbols) | |||||
|---|---|---|---|---|---|---|
| title | /PDBSTRIPPED (Strip Private Symbols) | |||||
| ms.date | 11/04/2016 | |||||
| f1_keywords |
|
|||||
| helpviewer_keywords |
|
|||||
| ms.assetid | 9b9e0070-6a13-4142-8180-19c003fbbd55 |
/PDBSTRIPPED:pdb_file_name
pdb_file_name
A user-specified name for the stripped program database (PDB) that the linker creates.
The /PDBSTRIPPED option creates a second program database (PDB) file when you build your program image with any of the compiler or linker options that generate a PDB file (/DEBUG, /Z7, /Zd, or /Zi). This second PDB file omits symbols that you would not want to ship to your customers. The second PDB file will only contain:
-
Public symbols
-
The list of object files and the portions of the executable to which they contribute
-
Frame pointer optimization (FPO) debug records used to traverse the stack
The stripped PDB file will not contain:
-
Type information
-
Line number information
-
Per-object file CodeView symbols such as those for functions, locals, and static data
The full PDB file will still be generated when you use /PDBSTRIPPED.
If you do not create a PDB file, /PDBSTRIPPED is ignored.
-
Open the project's Property Pages dialog box. For details, see Set C++ compiler and build properties in Visual Studio.
-
Select the Configuration Properties > Linker > Debug property page.
-
Modify the Strip Private Symbols property.
- See xref:Microsoft.VisualStudio.VCProjectEngine.VCLinkerTool.StripPrivateSymbols%2A.