Dear Luca Barbato,

On 18/01/16 16:27, Luca Barbato wrote:
> Use mips{,64}eb to force big endian and mips{,64}el to force little
> endian.
> ---

so...

--arch=mipsel : force little-endian
--arch=mipseb : force big-endian
--arch=mips   : use compilers's default endianness

Looks good to me.

Regards,

Vincent.

> 
> Now supporting mipseb as well
> 
>  configure | 10 ++++++++++
>  1 file changed, 10 insertions(+)
> 
> diff --git a/configure b/configure
> index 196be51..adf9432 100755
> --- a/configure
> +++ b/configure
> @@ -3334,6 +3334,16 @@ case "$arch" in
>          arch="arm"
>      ;;
>      mips*|IP*)
> +        case "$arch" in
> +        *el)
> +            add_cppflags -EL
> +            add_ldflags -EL
> +        ;;
> +        *eb)
> +            add_cppflags -EB
> +            add_ldflags -EB
> +        ;;
> +        esac
>          arch="mips"
>      ;;
>      parisc*|hppa*)
> --
> 2.6.1
> 
_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to