summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <ceffmpeg@gmail.com>2020-03-25 23:59:11 +0100
committerCarl Eugen Hoyos <ceffmpeg@gmail.com>2020-03-26 23:46:40 +0100
commit580d13e73d8f2d9dcd6b857ac8ec8a89377fbfda (patch)
treeb843929094fd3d66913da2debe3844be2af74fa1
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
-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 ;;