VS2008 binary 3x times slower than VS2005? - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T11:50:47Zhttp://stackoverflow.com/feeds/question/361730http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/361730/vs2008-binary-3x-times-slower-than-vs20055VS2008 binary 3x times slower than VS2005?shoosh2008-12-12T02:45:24Z2008-12-14T03:18:28Z
<p>I've just upgraded a native C++ project from VS2005-SP1 to VS2008-SP1<br />
The first thing I tested was a very basic functionality test of the application and the first thing I noticed is that the main number-crunching algorithm performs three times slower in the VS2008 binary.<br />
I tested again the VS2005 binary to make sure there isn't any other difference and it still performed as it did before.<br />
Did anyone stumble into this?</p>
http://stackoverflow.com/questions/361730/vs2008-binary-3x-times-slower-than-vs2005/361780#36178013Answer by shoosh for VS2008 binary 3x times slower than VS2005?shoosh2008-12-12T03:18:47Z2008-12-12T03:18:47Z<p>Strangest. Thing. Ever. </p>
<p>It seems that the project upgrade wizard of vs2008 simply doesn't copy the '<code>Optimization="2"</code>' property so the new project is left with no optimization in release. </p>
<p>The fix was to go to the properties dialog, change optimization to 1 and then back to 2.
compile again and everything works it should.</p>
<p>I couldn't find any official reference for this only <a href="http://social.msdn.microsoft.com/Forums/en-US/vcgeneral/thread/fb32033b-7bad-439b-a94c-943a17f0cbb2/" rel="nofollow">this obscure reference</a> in an MSDN forum.</p>