qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [PATCH 08/20] w64: Undefine macro SYS_OPEN (fixes a com


From: Blue Swirl
Subject: Re: [Qemu-devel] [PATCH 08/20] w64: Undefine macro SYS_OPEN (fixes a compiler warning)
Date: Sun, 15 Apr 2012 17:00:09 +0000

On Sun, Apr 15, 2012 at 14:13, Stefan Weil <address@hidden> wrote:
> This could also be done in arm-semi.c, but doing it here keeps more
> w64 related code in one place.

This is just papering over the bug, it could show up with a different
OS. The right fix is to change arm-semi.c to prefix the #defines with
TARGET_  or QEMU_ so they no longer clash with system definitions.

>
> Signed-off-by: Stefan Weil <address@hidden>
> ---
>  qemu-os-win32.h |    4 ++++
>  1 files changed, 4 insertions(+), 0 deletions(-)
>
> diff --git a/qemu-os-win32.h b/qemu-os-win32.h
> index 753679b..99e8423 100644
> --- a/qemu-os-win32.h
> +++ b/qemu-os-win32.h
> @@ -65,6 +65,10 @@
>  # define setjmp(env) _setjmp(env, NULL)
>  #endif
>
> +/* MinGW-w64 defines SYS_OPEN in stdio.h,
> + * but arm-semi.c uses a different definition. */
> +#undef SYS_OPEN
> +
>  /* Declaration of ffs() is missing in MinGW's strings.h. */
>  int ffs(int i);
>
> --
> 1.7.0.4
>



reply via email to

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