10
votes

I am trying to upgrade an old solution to use VS2010 (VC100).

I have it setup so that stdafx.cpp will create a precompiled header stdafx.pch from stdafx.h. Then all the other .cpp files that include stdafx.h are instructed to use the precompiled header.

These posts helped me get this far:

Now all is fine when I build in release mode. However when I try and build in debug mode I get a whole heap of errors saying:

Error 1 error C2859: [removed]\debug\vc100.idb is not the idb file that was used when this precompiled header was created, recreate the precompiled header.

I believe that this .idb file is an intermediate debug file created by Visual Studio.

Why am I getting this error? In other words why did it not use this .idb file when it created the precompiled header?

I'm not sure what further information you need to be able to give me answer so just ask if there is more information that I need to provide.

5

5 Answers

5
votes

Thanks to a colleague I got the answer.

The problem was that stdafx.cpp had Debug Information Format set to Program Database (/Zi) where as all the other files had it set to Program Database for Edit and Continue (/ZI).

Changing them all to Program Database for Edit and Continue (/ZI) and doing a full rebuild solved the problem.

I guess the upgrade screwed it up somehow.

4
votes

I've hit this error with VS2005 when compiling a project where the $(ProjectName) is different from the actual output file of the project (i.e. Linker > Output File isn't set to the default of $(OutDir)\$(ProjectName).exe but to something else, e.g. $(OutDir)\$(ProjectName)-custom_postfix.exe)

In this case, and apparently only when doing a Rebuild-Project-Only, the vc80.pdb seems to be looked up wrongly.

What helped me was to additionally set C/C++ > Output Files > Progam Database File Name to $(IntDir)\$(TargetName).pdb. (Instead of the default vc80.pdb)

1
votes

select Disable for the Debug Information Format in the Properties page for stdafx.cpp, then go back and select Inherit from parent worked for me.

0
votes

Maybe your release build is configured to write file [removed]\debug\vc100.idb instead of [removed]\release\vc100.idb? Check the project settings for your release build and make sure there are no hardcoded path components like that.

0
votes

Here's how I just fixed this error on Visual Studio 2008:

Background:

  • I have a solution that contains two sub-projects.
  • One project compiles the .dll;
  • One project compiles the .exe that used this .dll;
  • The .exe project is dependent on the .dll project;
  • Problem: I had both of the projects dumping their output into the same directory, i.e. both "OutPutDirectory" and "IntermediateDirectory" set to write to a common directory in the root, "../$(ConfigurationName)".

Cause of error:

  • The cause of this error was that when the .dll project was compiled, it created the precompiled header (*.pch) in the same directory as the .exe directory, and when the .exe project was compiled, it promptly overwrote the precompiled header (*.pch) from the .dll project.

The fix:

  • To fix this, I changed the "IntermediateDirectory" for both sub-projects to "temp", so that the temporary files (including the precompiled header files) were written to different directories.