diff options
author | Diego Biurrun <diego@biurrun.de> | 2013-04-26 16:49:03 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2013-05-12 21:23:38 +0200 |
commit | 2c2c48a9bdbef51177204dfc2f151f3be257f9b8 (patch) | |
tree | 7607e6bc47503d62fd2bd639bd8d20e996d31edb | |
parent | f54b55058a429c4eea5bae7e5bcb49bd29b34199 (diff) | |
download | ffmpeg-2c2c48a9bdbef51177204dfc2f151f3be257f9b8.tar.gz |
configure: x86: Only enable cpunop on i686
The assembler may insert nopl instructions for cpunop, which are not
(universally) supported on i586 CPUs.
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3431,7 +3431,7 @@ EOF check_yasm "vextractf128 xmm0, ymm0, 0" && enable yasm || die "yasm not found, use --disable-yasm for a crippled build" check_yasm "vfmaddps ymm0, ymm1, ymm2, ymm3" || disable fma4_external - check_yasm "CPU amdnop" && enable cpunop + check_yasm "CPU amdnop" && enabled i686 && enable cpunop fi case "$cpu" in |