diff options
author | Diego Biurrun <diego@biurrun.de> | 2011-05-16 14:23:59 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2011-05-19 16:27:40 +0200 |
commit | 429059f866259b447233c3fa23fffddce3e39508 (patch) | |
tree | 4cd6744df9fbc77ddb8471f8085a4fb5993687e3 /configure | |
parent | c2a16e44f8ed130c2b492f1f3ce09f7f55a7d4a4 (diff) | |
download | ffmpeg-429059f866259b447233c3fa23fffddce3e39508.tar.gz |
configure: Adjust AVX assembler check.
Older nasm versions have trouble assembling certain AVX instructions, but the
current AVX check did not detect this. Update the check to use an instruction
that triggers the nasm problem.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2729,7 +2729,7 @@ EOF check_yasm "pextrd [eax], xmm0, 1" && enable yasm || die "yasm not found, use --disable-yasm for a crippled build" - check_yasm "vpaddw xmm0, xmm0, xmm0" || disable avx + check_yasm "vextractf128 xmm0, ymm0, 0" || disable avx fi case "$cpu" in |