Consider not using the Frame Pointer Optimization when building your software
Stack tracing is a very useful functionality for tracking both the causes of performance problems and reliability issues. With F rame P ointer O ptimization disabled , one can easily build the call chain by walking through the stack frame pointers. Because of potential code size increase and performance degradation, I ndependent S oftware V endors tend to use the /Oy C++ compiler option when building their software.
The rest is here:
Consider not using the Frame Pointer Optimization when building your software


