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

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <ceffmpeg@gmail.com>2020-03-26 01:59:11 +0300
committerCarl Eugen Hoyos <ceffmpeg@gmail.com>2020-03-27 01:46:40 +0300
commit580d13e73d8f2d9dcd6b857ac8ec8a89377fbfda (patch)
treeb843929094fd3d66913da2debe3844be2af74fa1 /configure
parent418e468699868a0265f8b439beedf64bb643b088 (diff)
configure: Remove all C standard versions from the MSVC command line.
Silences a warning for every file when compiling with clang-cl.exe
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 18f2841765..90aaab92a9 100755
--- a/configure
+++ b/configure
@@ -4420,7 +4420,7 @@ msvc_common_flags(){
# generic catch all at the bottom will print the original flag.
-Wall) ;;
-Wextra) ;;
- -std=c99) ;;
+ -std=c*) ;;
# Common flags
-fomit-frame-pointer) ;;
-g) echo -Z7 ;;