diff options
author | Janne Grunau <janne-libav@jannau.net> | 2014-02-07 19:23:28 +0100 |
---|---|---|
committer | Janne Grunau <janne-libav@jannau.net> | 2014-02-08 13:38:36 +0100 |
commit | 6398d8fd813490fc3900baf8c788f803d8e17b73 (patch) | |
tree | d2185e23ed54916e4b754154a5e2ba85a9ef3ca8 | |
parent | b141c7b37eb52aca41ac83738f159b63b9c09d5c (diff) | |
download | ffmpeg-6398d8fd813490fc3900baf8c788f803d8e17b73.tar.gz |
configure: clang: add -Qunused-arguments to as|ld_flags as well
-rwxr-xr-x | configure | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -4208,6 +4208,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,*' |