diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-03-07 19:30:46 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-03-07 19:30:51 +0100 |
commit | 9a1884a10ecd780e92333a5719d67f6f09157a65 (patch) | |
tree | c7b630771d31a3ac32a1449f651291ea26b227d1 /configure | |
parent | 1be605426140990e152793d24162eabc78a7c2e5 (diff) | |
parent | dcae2e32f7d8a1ca5fb8c1e4aa81313be854dd73 (diff) | |
download | ffmpeg-9a1884a10ecd780e92333a5719d67f6f09157a65.tar.gz |
Merge commit 'dcae2e32f7d8a1ca5fb8c1e4aa81313be854dd73'
* commit 'dcae2e32f7d8a1ca5fb8c1e4aa81313be854dd73':
arm: Suppress tags about used cpu arch and extensions
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -1769,6 +1769,7 @@ SYSTEM_FUNCS=" TOOLCHAIN_FEATURES=" as_dn_directive as_func + as_object_arch asm_mod_q attribute_may_alias attribute_packed @@ -4508,6 +4509,11 @@ if enabled_any arm aarch64 || enabled_all ppc altivec && enabled asm; then .func test .endfunc EOF + + # llvm's integrated assembler supports .object_arch from llvm 3.5 + enabled arm && test "$objformat" = elf && check_as <<EOF && enable as_object_arch +.object_arch armv4 +EOF fi check_inline_asm inline_asm_labels '"1:\n"' |