Browse Source

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>
tags/n2.0
Alex Smith Derek Buitenhuis 12 years ago
parent
commit
9f4a16c52e
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      configure

+ 1
- 1
configure View File

@@ -2353,7 +2353,7 @@ msvc_common_flags(){
-Wall) ;; -Wall) ;;
-std=c99) ;; -std=c99) ;;
# Common flags # Common flags
-fomit-frame-pointer) echo -Oy ;;
-fomit-frame-pointer) ;;
-g) echo -Z7 ;; -g) echo -Z7 ;;
-fno-math-errno) ;; -fno-math-errno) ;;
-fno-common) ;; -fno-common) ;;


Loading…
Cancel
Save