Why is CodeGear C++Builder failing to create pre-compiled headers? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T16:44:23Z http://stackoverflow.com/feeds/question/956727 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/956727/why-is-codegear-cbuilder-failing-to-create-pre-compiled-headers 1 Why is CodeGear C++Builder failing to create pre-compiled headers? Scott Saad 2009-06-05T16:06:55Z 2009-06-24T21:09:16Z <h2>Problem</h2> <p>In CodeGear C++Builder 2009 we are using the pre-compiled header injection to greatly reduce our compile times. We have the same header file being injected into multiple projects. When compiling <em>some</em> projects, the compiler kicks out the following warning: </p> <pre><code>[BCC32 Warning] Dateutils.hpp(43): W8058 Cannot create pre-compiled header: initialized data in header </code></pre> <p>In this example, the <strong>Dateutils.hpp</strong> is the file it's complaining about (CodeGear's header). I've seen this happen with <strong>other headers</strong> as well. What makes this interesting is that this only happens with some projects (same header being injected).</p> <p>In the past, I've had to just find the header who ultimately included this errant file and remove it from my pre-compiled header file. Does anyone know what's going on here and the best way to fix it?</p> <h2>Update</h2> <p>I ended up performing a process of elimination approach to the header file and came up with an interesting finding that I cannot explain. Out of the 50+ headers that get included, when I removed <strong>vcl.h</strong> I no longer get the W8058 warnings. I do not understand this as I would imagine that this header file in particular is a prime candidate for pre-compiliation. Can anyone explain that? </p> http://stackoverflow.com/questions/956727/why-is-codegear-cbuilder-failing-to-create-pre-compiled-headers/958357#958357 1 Answer by Kris Kumler for Why is CodeGear C++Builder failing to create pre-compiled headers? Kris Kumler 2009-06-05T22:03:51Z 2009-06-05T22:03:51Z <p>There are VCL header files that have this known issue: <a href="http://qc.embarcadero.com/wc/qcmain.aspx?d=23002" rel="nofollow">QC 23002</a>. The marked severity on this item though is a "minor failure."</p> <p>So the workaround options are limited:</p> <ol> <li>Not using those header files (which, yes, does defeat the idea)</li> <li>Modify the header files (not advisable -- hard to track changes, keep them current).</li> </ol> <p>Either way, make sure that of the ones you come across, CodeGear has knowledge of those header files having that issue. That will certainly be the best way to address it long term -- let the vendor fix their problem. Supposedly CodeGear has DateUtils.hpp in their internal tests for this, but that was posted (for <a href="http://qc.embarcadero.com/wc/qcmain.aspx?d=2781" rel="nofollow">QC 2781</a>) in July 2007. If the problem or certain header files affect you considerably, contact them about it.</p> http://stackoverflow.com/questions/956727/why-is-codegear-cbuilder-failing-to-create-pre-compiled-headers/1029587#1029587 1 Answer by Roddy for Why is CodeGear C++Builder failing to create pre-compiled headers? Roddy 2009-06-22T21:51:27Z 2009-06-22T21:51:27Z <p>One thing that may be related is the way default string parameters are handled by BCB 200x.</p> <p>Functions declared like this give the "can't generate precompiled header" message.</p> <pre><code>void myFunc(const AnsiString &amp;param=""); </code></pre> <p>However, change it to this, and the precompiled header can be generated. </p> <pre><code>void myFunc(const AnsiString &amp;param = AnsiString("")); </code></pre>