Re: [Qemu-devel] [PATCH] configure: Support QEMU cross-compiling for ARM64 host

2013-01-11 Thread Richard Henderson
On 01/08/2013 04:08 AM, Peter Maydell wrote: > The translator sources (as and when we implement a > TCG QEMU target for this) should live under the existing target-arm. Of this I'm not certain, given that A64 is different enough from A32 to warrant a brand new gcc backend. I havn't tried to rever

Re: [Qemu-devel] [PATCH] configure: Support QEMU cross-compiling for ARM64 host

2013-01-08 Thread Peter Maydell
On 8 January 2013 15:57, Richard Henderson wrote: > On 01/08/2013 04:08 AM, Peter Maydell wrote: >> The translator sources (as and when we implement a >> TCG QEMU target for this) should live under the existing target-arm. > > Of this I'm not certain, given that A64 is different enough from A32 >

Re: [Qemu-devel] [PATCH] configure: Support QEMU cross-compiling for ARM64 host

2013-01-08 Thread Peter Maydell
On 8 January 2013 12:24, Anup Patel wrote: > On 8 January 2013 17:38, Peter Maydell wrote: >> Also, I suspect this isn't the only thing that will be required. > Yes. This patch only tries to make sure that the configure step falls > through and at-least QEMU cross-compilation starts. It's gener

Re: [Qemu-devel] [PATCH] configure: Support QEMU cross-compiling for ARM64 host

2013-01-08 Thread Anup Patel
On 8 January 2013 17:38, Peter Maydell wrote: > On 8 January 2013 11:05, Anup Patel wrote: > > diff --git a/configure b/configure > > index fe18ed2..0bfb8bb 100755 > > --- a/configure > > +++ b/configure > > @@ -366,6 +366,8 @@ elif check_define __s390__ ; then > >fi > > elif check_define _

Re: [Qemu-devel] [PATCH] configure: Support QEMU cross-compiling for ARM64 host

2013-01-08 Thread Peter Maydell
On 8 January 2013 11:05, Anup Patel wrote: > diff --git a/configure b/configure > index fe18ed2..0bfb8bb 100755 > --- a/configure > +++ b/configure > @@ -366,6 +366,8 @@ elif check_define __s390__ ; then >fi > elif check_define __arm__ ; then >cpu="arm" > +elif check_define __aarch64__ ;

Re: [PATCH] configure: Support QEMU cross-compiling for ARM64 host

2013-01-08 Thread Marcin Juszkiewicz
W dniu 08.01.2013 12:05, Anup Patel pisze: > We should be able to cross compile QEMU for ARM64 host. > > This is required for trying out ARM 32-bit guest on ARM64 host using QEMU + > KVM ARM64. Which version you got built with this patch? 1.3.0 failed for me. __

[PATCH] configure: Support QEMU cross-compiling for ARM64 host

2013-01-08 Thread Anup Patel
We should be able to cross compile QEMU for ARM64 host. This is required for trying out ARM 32-bit guest on ARM64 host using QEMU + KVM ARM64. Signed-off-by: Anup Patel --- configure |5 + 1 file changed, 5 insertions(+) diff --git a/configure b/configure index fe18ed2..0bfb8bb 100755