mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 03:59:43 +00:00
configure: x86: Only enable cpunop on i686
The assembler may insert nopl instructions for cpunop, which are not (universally) supported on i586 CPUs.
This commit is contained in:
parent
f54b55058a
commit
2c2c48a9bd
2
configure
vendored
2
configure
vendored
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user