diff options
author | Shivraj Patil <shivraj.patil@imgtec.com> | 2016-03-11 13:46:42 +0530 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2016-03-11 23:57:06 +0100 |
commit | 15ef98afd10b3696d29fb6d19606ba03a9dd47ad (patch) | |
tree | 41b143d06714927d64cc4e9f274c3451f13b4f3b | |
parent | 817d0c6da26b465eba4d6a0288e3999fc29ea34d (diff) | |
download | ffmpeg-15ef98afd10b3696d29fb6d19606ba03a9dd47ad.tar.gz |
configure: build fix for P5600 along option --disable-msa
Signed-off-by: Shivraj Patil <shivraj.patil@imgtec.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
-rwxr-xr-x | configure | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -5118,7 +5118,8 @@ elif enabled mips; then fi enabled mipsfpu && check_inline_asm_flags mipsfpu '"cvt.d.l $f0, $f2"' '-mhard-float' - enabled mipsfpu && enabled msa && check_inline_asm_flags msa '"addvi.b $w0, $w1, 1"' '-mfp64 -mmsa' && check_header msa.h || disable msa + enabled mipsfpu && (enabled mips32r5 || enabled mips32r6 || enabled mips64r6) && check_inline_asm_flags mipsfpu '"cvt.d.l $f0, $f1"' '-mfp64' + enabled mipsfpu && enabled msa && check_inline_asm_flags msa '"addvi.b $w0, $w1, 1"' '-mmsa' && check_header msa.h || disable msa enabled mipsdsp && check_inline_asm_flags mipsdsp '"addu.qb $t0, $t1, $t2"' '-mdsp' enabled mipsdspr2 && check_inline_asm_flags mipsdspr2 '"absq_s.qb $t0, $t1"' '-mdspr2' |