[FFmpeg-cvslog] configure: Do not explicitly set Oy for msvc/icl

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:11 2013 +0000| [9f4a16c52ea8f2383244587ea4cb534fe7f6da49] | committer: Derek Buitenhuis

configure: Do not explicitly set Oy for msvc/icl

It is implied by O1 or O2, both of which are required to build libav
with msvc/icl.  Silences warnings when targeting x64 with icl.

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

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

 configure |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure b/configure
index da62095..fdbea76 100755
--- a/configure
+++ b/configure
@@ -2353,7 +2353,7 @@ msvc_common_flags(){
             -Wall)                ;;
             -std=c99)             ;;
             # Common flags
-            -fomit-frame-pointer) echo -Oy ;;
+            -fomit-frame-pointer) ;;
             -g)                   echo -Z7 ;;
             -fno-math-errno)      ;;
             -fno-common)          ;;



More information about the ffmpeg-cvslog mailing list