Please fix following problem (cut from configure script):
--------------- current -- line 2891 -------------------
echocheck "ARMv6t2 (SIMD instructions)"
if test $_armv6t2 = "auto" ; then
_armv6t2=no
inline_asm_check '"movt r0, #0"' && _armv6t2=yes
fi
echores "$_armv6"
-------------- correct version -----------------------
echocheck "ARMv6t2 (SIMD instructions)"
if test $_armv6t2 = "auto" ; then
_armv6t2=no
inline_asm_check '"movt r0, #0"' && _armv6t2=yes
fi
echores "$_armv6t2"
I spent half of hour trying to understand how my ARM CPU can support both
set of instructions. Thanks.
_______________________________________________
MPlayer-users mailing list
MPlaye...@mplayerhq.hu
https://lists.mplayerhq.hu/mailman/listinfo/mplayer-users
Fixed in SVN r32996.
Please use svn diff though to show the correct changes, the above
is very hard to understand what you changed.