diff options
author | Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz> | 2014-09-12 22:29:29 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-09-12 22:57:31 +0200 |
commit | cdb3eee7c496f763d195de34be7f67783b98fb2c (patch) | |
tree | 6c828bb17cb4aa2cfaa7718c5da17e84ebdcfd67 /configure | |
parent | b3fd2b175c90b4766034095e74e1f5112b1547ef (diff) | |
download | ffmpeg-cdb3eee7c496f763d195de34be7f67783b98fb2c.tar.gz |
configure: Fix miscompilation for i586
If the CPU is 386, 486 or pentium, we must not use cmov in inline
assembler.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -3842,6 +3842,7 @@ elif enabled x86; then case $cpu in i[345]86|pentium) cpuflags="-march=$cpu" + disable i686 disable mmx ;; # targets that do NOT support nopl and conditional mov (cmov) |