diff options
author | James Almer <jamrial@gmail.com> | 2014-03-13 23:45:07 -0300 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-03-14 17:28:00 +0100 |
commit | 722b48bc1256ebc91738a273f9738529810b08e8 (patch) | |
tree | cb02b358d4f9c13def93097fda4718cd77cc1839 /configure | |
parent | 7380201451a2edfb240cd356579c4c39a87cf5bd (diff) | |
download | ffmpeg-722b48bc1256ebc91738a273f9738529810b08e8.tar.gz |
configure: add missing avx2 support check
AVX2 support was introduced in Yasm 1.2.0, and some distros
like Debian still feature version 1.1.0
Signed-off-by: James Almer <jamrial@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -4282,6 +4282,7 @@ EOF check_yasm "movbe ecx, [5]" && enable yasm || die "yasm/nasm not found or too old. Use --disable-yasm for a crippled build." check_yasm "vextractf128 xmm0, ymm0, 0" || disable avx_external avresample + check_yasm "vextracti128 xmm0, ymm0, 0" || disable avx2_external check_yasm "vpmacsdd xmm0, xmm1, xmm2, xmm3" || disable xop_external check_yasm "vfmadd132ps ymm0, ymm1, ymm2" || disable fma3_external check_yasm "vfmaddps ymm0, ymm1, ymm2, ymm3" || disable fma4_external |