diff options
author | Mans Rullgard <mans@mansr.com> | 2011-03-23 11:24:10 +0000 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-03-23 12:38:37 +0000 |
commit | 91bcad197175bf82610ea52498854b5b0ed73de0 (patch) | |
tree | cb97da5833315de78075fef2955c527228ff387f /configure | |
parent | 28e9c42afbf0088aa1f4280a95d304dca4b675a0 (diff) | |
download | ffmpeg-91bcad197175bf82610ea52498854b5b0ed73de0.tar.gz |
Disable 'attribute "foo" ignored' warnings from icc
ICC lies about the version of gcc it emulates, which results
in unsupported attributes sometimes being used. The warning
is an annoyance and should be disabled.
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -2987,10 +2987,11 @@ if enabled icc; then check_cflags -w1 # -wd: Disable following warnings # 144, 167, 556: -Wno-pointer-sign + # 1292: attribute "foo" ignored # 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,10148,10156 + check_cflags -wd144,167,556,1292,10006,10148,10156 # 11030: Warning unknown option --as-needed # 10156: ignoring option '-export'; no argument required check_ldflags -wd10156,11030 |