diff options
author | wang-bin <wbsecg1@gmail.com> | 2017-12-15 15:05:13 +0800 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2017-12-16 18:21:58 +0100 |
commit | dc08caa8f727fe32b55eaaaf6771b14f1bed92a0 (patch) | |
tree | 568721b51bdef7b364f7d5fac0c9b50ea0150076 /configure | |
parent | ee2dfa34a25e0c5bf85f464be64e5bc78489abf9 (diff) | |
download | ffmpeg-dc08caa8f727fe32b55eaaaf6771b14f1bed92a0.tar.gz |
configure: fix probing armv6zk
clang reports 6kz: https://reviews.llvm.org/D14568
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -4521,6 +4521,7 @@ elif enabled arm; then elif check_arm_arch 6J; then echo armv6j elif check_arm_arch 6K; then echo armv6k elif check_arm_arch 6Z; then echo armv6z + elif check_arm_arch 6KZ; then echo armv6zk elif check_arm_arch 6ZK; then echo armv6zk elif check_arm_arch 6T2; then echo armv6t2 elif check_arm_arch 7; then echo armv7 |