diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-02-08 17:14:52 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-02-08 17:15:36 +0100 |
commit | 3a0e4f6c90db9a4dd5b94344c0a698bac6ed02e2 (patch) | |
tree | 28850894b00e9f9e64efbd69eeb0e48342a314ae /configure | |
parent | 4df9d9ca4f5a4e6397c34d7d6e8193549f99bd7c (diff) | |
parent | 6398d8fd813490fc3900baf8c788f803d8e17b73 (diff) | |
download | ffmpeg-3a0e4f6c90db9a4dd5b94344c0a698bac6ed02e2.tar.gz |
Merge commit '6398d8fd813490fc3900baf8c788f803d8e17b73'
* commit '6398d8fd813490fc3900baf8c788f803d8e17b73':
configure: clang: add -Qunused-arguments to as|ld_flags as well
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -4810,6 +4810,18 @@ elif enabled_any msvc icl; then fi fi +case $as_type in + clang) + add_asflags -Qunused-arguments + ;; +esac + +case $ld_type in + clang) + check_ldflags -Qunused-arguments + ;; +esac + case $target_os in osf1) enabled ccc && add_ldflags '-Wl,-expect_unresolved,*' |