Skip to content

Commit 79b60d6

Browse files
author
Colin Robertson
committed
Another C1052 fix after testing
1 parent 74a8f08 commit 79b60d6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/error-messages/compiler-errors-1/fatal-error-c1052.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@ The compiler cannot update the same program database (PDB) files which are gener
4242

4343
To fix this issue, you can explicitly delete the PDB files before you compile again, or you can create different names for the compiler-generated and linker-generated PDB files.
4444

45-
To create different compiler-generated PDB file names on the command line, use the [/Fd](../../build/reference/fd-program-database-file-name.md) compiler option. To generate different compiler-generated PDB file names in the IDE, open the **Property Pages** dialog for your project, and in the **Configuration Properties**, **C/C++**, **Output Files** page, set the **Program Database File Name** property. By default, this property is `$(IntDir)vc$(PlatformToolsetVersion).pdb`.
45+
To specify the compiler-generated PDB file name on the command line, use the [/Fd](../../build/reference/fd-program-database-file-name.md) compiler option. To specify the compiler-generated PDB file name in the IDE, open the **Property Pages** dialog for your project, and in the **Configuration Properties**, **C/C++**, **Output Files** page, set the **Program Database File Name** property. By default, this property is `$(IntDir)vc$(PlatformToolsetVersion).pdb`.
4646

47-
Alternatively, you can set the linker-generated PDB file names. To create different linker-generated PDB file names on the command line, use the [/PDB](../../build/reference/pdb-use-program-database.md) linker option. To generate different linker-generated PDB file names in the IDE, open the **Property Pages** dialog for your project, and in the **Configuration Properties**, **Linker**, **Debugging** page, set the **Generate Program Database File** property. By default, this property is set to `$(OutDir)$(TargetName).pdb`.
47+
Alternatively, you can set the linker-generated PDB file name. To specify the linker-generated PDB file name on the command line, use the [/PDB](../../build/reference/pdb-use-program-database.md) linker option. To specify the linker-generated PDB file name in the IDE, open the **Property Pages** dialog for your project, and in the **Configuration Properties**, **Linker**, **Debugging** page, set the **Generate Program Database File** property. By default, this property is set to `$(OutDir)$(TargetName).pdb`.

0 commit comments

Comments
 (0)