Disabling Frame Pointer Omission Optimizations
We recommend turning off Frame Pointer Omission (FPO) optimization in release version configurations, as this optimization does not really give an appreciable gain, but greatly complicates the analysis of the dump: the /Oy compiler option makes using the debugger more difficult because the compiler suppresses frame pointer information. Moreover, in Visual Studio 2010 this optimization is disabled by default.
我们推荐在release版本中禁用省略帧指针优化(FPO), 因为此优化并无实际显著的效果, 但却大大增加了对dump分析的难度: /Oy 编译器选项使调试更加困难, 因为编译器压缩了帧指针信息, 在vs2010中该选项已被默认关闭.
To disable the FPO optimization:
原文:https://www.cnblogs.com/vikinn/p/14530476.html