summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-01-03 15:57:42 +0100
committerMichael Niedermayer <michaelni@gmx.at>2013-01-16 14:00:39 +0100
commitf0cf017dee3c8952965469dc27d4c798a2a8780e (patch)
tree7077e8b8164bd219a6bbfdbdf42a5e1f2237f078 /configure
parentcae11e40315ab871b502672fe459323266dd26cc (diff)
downloadffmpeg-streaming-f0cf017dee3c8952965469dc27d4c798a2a8780e.zip
ffmpeg-streaming-f0cf017dee3c8952965469dc27d4c798a2a8780e.tar.gz
configure: suppress "enumerated type mixed with another type" for icc
icc should not complain when 2 enum values are combined (for example when used as flags) Adding casts to suppress these would not help code quality Reviewed-by: Carl Eugen Hoyos <cehoyos@ag.or.at> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure b/configure
index 6b36ead..863e6f6 100755
--- a/configure
+++ b/configure
@@ -4073,12 +4073,13 @@ if enabled icc; then
check_cflags -w1
# -wd: Disable following warnings
# 144, 167, 556: -Wno-pointer-sign
+ # 188: enumerated type mixed with another type
# 1292: attribute "foo" ignored
# 1419: external declaration in primary source file
# 10006: ignoring unknown option -fno-signed-zeros
# 10148: ignoring unknown option -Wno-parentheses
# 10156: ignoring option '-W'; no argument required
- check_cflags -wd144,167,556,1292,1419,10006,10148,10156
+ check_cflags -wd144,167,188,556,1292,1419,10006,10148,10156
# 11030: Warning unknown option --as-needed
# 10156: ignoring option '-export'; no argument required
check_ldflags -wd10156,11030
OpenPOWER on IntegriCloud