qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [PATCH v4 04/12] ARM: Add AArch64 translation stub


From: Peter Maydell
Subject: Re: [Qemu-devel] [PATCH v4 04/12] ARM: Add AArch64 translation stub
Date: Mon, 20 May 2013 13:57:05 +0100

On 14 May 2013 05:32, John Rigby <address@hidden> wrote:
> @@ -10038,6 +10042,11 @@ void cpu_dump_state(CPUARMState *env, FILE *f, 
> fprintf_function cpu_fprintf,
>      int i;
>      uint32_t psr;
>
> +    if (is_a64(env)) {
> +        cpu_dump_state_a64(env, f, cpu_fprintf, flags);
> +        return;
> +    }
> +

This breaks building of the 32 bit ARM target:

  LINK  arm-softmmu/qemu-system-arm
target-arm/translate.o: In function `cpu_dump_state':
/home/petmay01/linaro/qemu-from-laptop/qemu/target-arm/translate.c:10046:
undefined reference to `cpu_dump_state_a64'

because cpu_dump_state_a64() is in a file which is
only built for 64 bit.

thanks
-- PMM



reply via email to

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