diff options
author | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2010-11-04 10:38:39 +0000 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@rainbow.studorg.tuwien.ac.at> | 2010-11-04 10:38:39 +0000 |
commit | f1c7c6aee8ddeda87a6b7a4d909a8e14ea3e1e24 (patch) | |
tree | cf579e17e93c947d6235870729491d52da557247 /configure | |
parent | 00d1e96bf4fc0467744f840fbc85d1a65cbb6f08 (diff) | |
download | ffmpeg-f1c7c6aee8ddeda87a6b7a4d909a8e14ea3e1e24.tar.gz |
Silence icc warning about unsupported option -Wno-parentheses
Originally committed as revision 25670 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -2918,8 +2918,9 @@ if enabled icc; then # -wd: Disable following warnings # 144, 167, 556: -Wno-pointer-sign # 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,10006,10156 + check_cflags -wd144,167,556,10006,10148,10156 # 11030: Warning unknown option --as-needed # 10156: ignoring option '-export'; no argument required check_ldflags -wd10156,11030 |