diff options
author | Alex Smith <alex.smith@warpsharp.info> | 2013-06-24 21:10:11 +0000 |
---|---|---|
committer | Derek Buitenhuis <derek.buitenhuis@gmail.com> | 2013-06-24 18:51:20 -0400 |
commit | 9f4a16c52ea8f2383244587ea4cb534fe7f6da49 (patch) | |
tree | c7c70c017937f3909df4c79981e61f5bf8a8f13f /configure | |
parent | b6507930ac1898aed62ab0b56afc7d6734ad830b (diff) | |
download | ffmpeg-9f4a16c52ea8f2383244587ea4cb534fe7f6da49.tar.gz |
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@gmail.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) ;; |