Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Smith <alex.smith@warpsharp.info>2013-06-25 01:10:11 +0400
committerDerek Buitenhuis <derek.buitenhuis@gmail.com>2013-06-25 02:51:20 +0400
commit9f4a16c52ea8f2383244587ea4cb534fe7f6da49 (patch)
treec7c70c017937f3909df4c79981e61f5bf8a8f13f /configure
parentb6507930ac1898aed62ab0b56afc7d6734ad830b (diff)
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-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index da620953db..fdbea76076 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) ;;