I have a solution with many Visual C++ projects, all using PCH, but some have particular compiler switches turned on for project-specific needs.

Most of these projects share the same set of headers in their respective stdafx.h (STL, boost, etc). I'm wondering if it's possible to share PCH between projects, so that instead of compiling every PCH per-project I could maybe have one common PCH that most projects in the solution could just use.

It seems possible to specify the location of the PCH as a shared location in the project settings, so I have a hunch this could work. I'm also assuming that all source files in all projects that use a shared PCH would have to have the same compiler settings, or else the compiler would complain about inconsistencies between the PCH and the source file being compiled.

Has anyone tried this? Does it work?

A related question: should such a shard PCH be overly inclusive, or would that hurt overall build time? For example, a shared PCH could include many STL headers that are widely used, but some projecst might only need <string> and <vector>. Would the time saved by using a shared PCH have to be paid back at a later point in the build process when the optimizer would have to discard all the unused stuff dragged into the project by the PCH?

link|improve this question

74% accept rate
Why don't you just try it out and let us know? in the time it took you to write this post you could have been half way through a simple 2 project proof of concept. – shoosh Mar 14 '09 at 12:02
1  
I don't think a 2 project POC would prove anything. The large number of project plays a part in this. – gigantt.com Mar 14 '09 at 12:07
feedback

4 Answers

up vote 9 down vote accepted

Yes it is possible and I can assure you, the time savings are significant. When you compile your PCH, you have to copy the .pdb and .idb files from the project that is creating the PCH file. In my case, I have a simple two file project that is creating a PCH file. The header will be your PCH header and the source will be told to create the PCH under project settings - this is similar to what you would do normally in any project. As you mentioned, you have to have the same compile settings for each configuration otherwise a discrepancy will arise and the compiler will complain.

Copying the above mentioned files every time there is a rebuild or every time the PCH is recompiled is going to be a pain, so we will automate it. To automate copying, perform a pre-build event where the above mentioned files are copied over to the appropriate directory. For example, if you are compiling Debug and Release builds of your PCH, copy the files from Debug of your PCH project over to your dependent project's Debug. So a copy command would look like this

copy PchPath\Debug*.pdb Debug\ /-Y

Note the /-Y at the end. After the first build, each subsequent build is incrementally compiled, therefore if you replace the files again, Visual Studio will complain about corrupted symbols. If they do get corrupted, you can always perform a rebuild, which will copy the files again (this time it won't skip them as they no longer exist - the cleanup deletes the files).

I hope this helps. It took me quite some time to be able to do this, but it was worth it. I have several projects that depend on one big framework, and the PCH needs to be compiled only once. All the dependent projects now compile very quickly.

link|improve this answer
Did someone try this on vs2010? – Hertzel Guinness Feb 28 '11 at 15:56
feedback

It seems it's not possible because each source file has to be compiled against the same PDB against which the PCH was compiled. darn it.

link|improve this answer
Yeah, I hit this too. :-( Error C2859: vc90.pdb is not the pdb file that was used when this precompiled header was created, recreate the precompiled header. msdn.microsoft.com/en-us/library/3bw58yy6.aspx – Trevor Robinson Jun 6 '10 at 2:36
1  
It is possible, please see my answer. – Samaursa Nov 13 '10 at 4:06
feedback

Samaursa's answer worked for me. I also saw this link: http://social.msdn.microsoft.com/Forums/en-US/vclanguage/thread/665d4183-f85c-481d-bada-03283b310099 that works (look for Reginald's answer near the bottom). One uses xcopy while the other uses copy. Thanks--this sped up my builds considerably.

link|improve this answer
+1, this one is even better because it automatically rebuilds when the stdafxes have changed. – ybungalobill Jul 17 '11 at 17:09
feedback

This sounds like a case of "diminishing returns" to me. Suppose including the common headers directly wastes 1 second per .cpp file, and each target (DLL/EXE) has 10 .cpp files. By using a .pch per target, you save 10 seconds per target. If your whole project has 10 targets, you save 1.5 minutes on the whole build, which is good.

But by reducing it to one .pch for the whole project, you'd only save a further 9 seconds. Is it worth it? The extra effort (which may be a lot more fiddly to set up, being a non-standard configuration unsupported by VS wizards) produces only a 10th of the saving.

link|improve this answer
Think 200 projects in the solution with a pch that can take 10 seconds to compile, and then it's not so clear if the returns are so diminished. – gigantt.com Mar 14 '09 at 10:54
How long does the whole build take? – Daniel Earwicker Mar 14 '09 at 10:58
It also a matter of saving time on incremental builds. A change might force only one file in each project to recompile, then it takes a long time to load each pch to do a fast compile. – Macke Mar 14 '09 at 11:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.