qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] configure: Detect predefined compiler symbols for ARM a


From: Blue Swirl
Subject: Re: [Qemu-devel] configure: Detect predefined compiler symbols for ARM and HPPA
Date: Sat, 1 Oct 2011 12:03:52 +0000

Thanks, applied.

On Thu, Sep 8, 2011 at 1:24 AM, Brad <address@hidden> wrote:
> configure: Detect predefined compiler symbols for ARM and HPPA
>
> To be able to detect some ARM / HPPA based architectures such as with
> OpenBSD/(armish / zaurus) or OpenBSD/hppa.
>
> Signed-off-by: Brad Smith <address@hidden>
>
> ---
>  configure |    8 +++++++-
>  1 files changed, 7 insertions(+), 1 deletions(-)
>
> diff --git a/configure b/configure
> index c7948b6..3bc6904 100755
> --- a/configure
> +++ b/configure
> @@ -284,6 +284,12 @@ elif check_define __s390__ ; then
>   else
>     cpu="s390"
>   fi
> +elif check_define __ARMEB__ ; then
> +  cpu="armv4b"
> +elif check_define __ARMEL__ ; then
> +  cpu="armv4l"
> +elif check_define __hppa__ ; then
> +  cpu="hppa"
>  else
>   cpu=`uname -m`
>  fi
> @@ -304,7 +310,7 @@ case "$cpu" in
>   armv*l)
>     cpu="armv4l"
>   ;;
> -  parisc|parisc64)
> +  hppa|parisc|parisc64)
>     cpu="hppa"
>   ;;
>   mips*)
> --
> 1.7.6
>
>
>



reply via email to

[Prev in Thread] Current Thread [Next in Thread]