Dear Luca Barbato,

On 18/01/16 16:10, Luca Barbato wrote:
> Use mips{,64}be to force big endian and mips{,64}le to force little
> endian.
> ---
>  configure | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/configure b/configure
> index 196be51..4687d9c 100755
> --- a/configure
> +++ b/configure
> @@ -3334,6 +3334,10 @@ case "$arch" in
>          arch="arm"
>      ;;
>      mips*|IP*)
> +        if [ ${arch%le} != ${arch} ]; then

this line should me like this:

        if [ ${arch%le} != ${arch} ]; then

Because we use mipsel or mips64el to refer little-endian. We don't use
mipsle or mips64le.

Regards,

Vincent.

> +            add_cppflags -EL
> +            add_ldflags -EL
> +        fi
>          arch="mips"
>      ;;
>      parisc*|hppa*)
> 
_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to