qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Cao Jiaxi <driver1998@foxmail.com>
To: qemu-devel@nongnu.org
Cc: Cao Jiaxi <driver1998@foxmail.com>
Subject: [Qemu-devel] [PATCH v3 4/4] osdep: Fix mingw compilation regarding stdio formats
Date: Fri,  3 May 2019 08:31:02 +0800	[thread overview]
Message-ID: <20190503003102.10042-1-driver1998@foxmail.com> (raw)
In-Reply-To: <20190503002258.9799-1-driver1998@foxmail.com>

I encountered the following compilation error on mingw:

/mnt/d/qemu/include/qemu/osdep.h:97:9: error: '__USE_MINGW_ANSI_STDIO' macro redefined [-Werror,-Wmacro-redefined]
 #define __USE_MINGW_ANSI_STDIO 1
        ^
/mnt/d/llvm-mingw/aarch64-w64-mingw32/include/_mingw.h:433:9: note: previous definition is here
 #define __USE_MINGW_ANSI_STDIO 0      /* was not defined so it should be 0 */

It turns out that __USE_MINGW_ANSI_STDIO must be set before any
system headers are included, not just before stdio.h.

Signed-off-by: Cao Jiaxi <driver1998@foxmail.com>
---
 include/qemu/osdep.h | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/include/qemu/osdep.h b/include/qemu/osdep.h
index 303d315c5d..af2b91f0b8 100644
--- a/include/qemu/osdep.h
+++ b/include/qemu/osdep.h
@@ -85,17 +85,17 @@ extern int daemon(int, int);
 #endif
 #endif
 
+/* enable C99/POSIX format strings (needs mingw32-runtime 3.15 or later) */
+#ifdef __MINGW32__
+#define __USE_MINGW_ANSI_STDIO 1
+#endif
+
 #include <stdarg.h>
 #include <stddef.h>
 #include <stdbool.h>
 #include <stdint.h>
 #include <sys/types.h>
 #include <stdlib.h>
-
-/* enable C99/POSIX format strings (needs mingw32-runtime 3.15 or later) */
-#ifdef __MINGW32__
-#define __USE_MINGW_ANSI_STDIO 1
-#endif
 #include <stdio.h>
 
 #include <string.h>
-- 
2.17.1

  parent reply	other threads:[~2019-05-03  0:31 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <20190503002258.9799-1-driver1998@foxmail.com>
2019-05-03  0:23 ` [Qemu-devel] [PATCH v3 1/4] QEMU_PACKED: Remove gcc_struct attribute in Windows non x86 targets Cao Jiaxi
2019-05-03  0:23   ` Cao Jiaxi
2019-05-03  0:25 ` [Qemu-devel] [PATCH v3 2/4] qga: Fix mingw compilation warnings on enum conversion Cao Jiaxi
2019-05-03  0:25   ` Cao Jiaxi
2019-05-03  9:03   ` Philippe Mathieu-Daudé
2019-05-03  9:03     ` Philippe Mathieu-Daudé
2019-05-03  0:29 ` [Qemu-devel] [PATCH v3 3/4] util/cacheinfo: Use uint64_t on LLP64 model to satisfy Windows ARM64 Cao Jiaxi
2019-05-03  0:29   ` Cao Jiaxi
2019-05-03  9:06   ` Philippe Mathieu-Daudé
2019-05-03  9:06     ` Philippe Mathieu-Daudé
2019-05-03  0:31 ` Cao Jiaxi [this message]
2019-05-03  0:31   ` [Qemu-devel] [PATCH v3 4/4] osdep: Fix mingw compilation regarding stdio formats Cao Jiaxi
2019-05-03 10:13   ` Philippe Mathieu-Daudé
2019-05-03 10:13     ` Philippe Mathieu-Daudé
2019-05-03  0:22 [Qemu-devel] [PATCH v3 0/4] Initial Windows on ARM (AArch64 64-Bit) host support Cao Jiaxi
2019-05-03  0:37 ` [Qemu-devel] [PATCH v3 4/4] osdep: Fix mingw compilation regarding stdio formats Cao Jiaxi
2019-05-03  0:37   ` Cao Jiaxi
2019-05-03  5:11   ` Thomas Huth
2019-05-03  5:11     ` Thomas Huth
2019-05-03  5:28     ` Stefan Weil
2019-05-03  5:28       ` Stefan Weil

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20190503003102.10042-1-driver1998@foxmail.com \
    --to=driver1998@foxmail.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).