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>
pull/25/merge
Alex Smith 12 years ago committed by Derek Buitenhuis
parent b6507930ac
commit 9f4a16c52e
  1. 2
      configure

2
configure vendored

@ -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) ;;

Loading…
Cancel
Save