[FFmpeg-cvslog] configure: Do not omit frame pointers for msvc/icl debug builds

Alex Smith git at videolan.org
Tue Jun 25 17:53:42 CEST 2013


ffmpeg | branch: master | Alex Smith <alex.smith at warpsharp.info> | Mon Jun 24 21:10:12 2013 +0000| [4f6b192e2ef0426298bb815e190d3724d3b237d2] | committer: Derek Buitenhuis

configure: Do not omit frame pointers for msvc/icl debug builds

Because O1 or O2 are required to build libav with msvc/icl, this must be
explicitly set instead of just omitting Oy.

Signed-off-by: Derek Buitenhuis <derek.buitenhuis at gmail.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=4f6b192e2ef0426298bb815e190d3724d3b237d2
---

 configure |    1 +
 1 file changed, 1 insertion(+)

diff --git a/configure b/configure
index fdbea76..db591e8 100755
--- a/configure
+++ b/configure
@@ -3956,6 +3956,7 @@ elif enabled pathscale; then
     add_cflags -fstrict-overflow -OPT:wrap_around_unsafe_opt=OFF
 elif enabled_any msvc icl; then
     enabled x86_32 && disable aligned_stack
+    enabled_all x86_32 debug && add_cflags -Oy-
     if enabled icl; then
         # basically -fstrict-aliasing that does not work (correctly) on icl 13.x
         check_cpp_condition "windows.h" "__ICL < 1300" && add_cflags -Qansi-alias



More information about the ffmpeg-cvslog mailing list