diff options
author | Måns Rullgård <mans@mansr.com> | 2010-03-07 06:53:12 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-03-07 06:53:12 +0000 |
commit | 62df111cf04956fc9864204ddefb5ea10bdd7061 (patch) | |
tree | 29db080cca200fcd4e7f2307f19896e395f303d1 /configure | |
parent | e7edeb9191ca434fc707f2e984a1558d04f16545 (diff) | |
download | ffmpeg-62df111cf04956fc9864204ddefb5ea10bdd7061.tar.gz |
Use -Werror=implicit only with gcc
Some other compilers turn too many warnings into errors with this flag.
Originally committed as revision 22276 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2705,7 +2705,6 @@ check_cflags -Wwrite-strings check_cflags -Wtype-limits check_cflags -Wundef check_cflags -Wmissing-prototypes -check_cflags -Werror=implicit enabled extra_warnings && check_cflags -Winline # add some linker flags @@ -2752,6 +2751,7 @@ elif enabled ccc; then add_cflags -msg_disable unreachcode elif enabled gcc; then check_cflags -fno-tree-vectorize + check_cflags -Werror=implicit elif enabled clang; then check_cflags -Qunused-arguments elif enabled armcc; then |