https://bugs.webkit.org/show_bug.cgi?id=54403
Reviewed by Adam Roben.
Leave it enabled for Windows Production builds.
Disabling this optimization improves stack traces for memory and performance tools like umdh and xperf.
We use both /Oy- and OmitFramePointers="false" since OmitFramePointers="false" isnt' enough
to override /O2.
* win/tools/vsprops/release.vsprops:
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@82515
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2011-03-30 Steve Falkenburg <sfalken@apple.com>
+
+ Reviewed by Adam Roben.
+
+ Should turn off frame pointer omission (FPO) for Release (not Production) builds
+ https://bugs.webkit.org/show_bug.cgi?id=54403
+
+ Leave it enabled for Windows Production builds.
+ Disabling this optimization improves stack traces for memory and performance tools like umdh and xperf.
+
+ We use both /Oy- and OmitFramePointers="false" since OmitFramePointers="false" isnt' enough
+ to override /O2.
+
+ * win/tools/vsprops/release.vsprops:
+
2011-03-30 Steve Falkenburg <sfalken@apple.com>
Reviewed by Adam Roben.
>
<Tool
Name="VCCLCompilerTool"
+ AdditionalOptions="/Oy-"
+ OmitFramePointers="false"
/>
</VisualStudioPropertySheet>