Commit f992b9fc by Kai Tietz Committed by Kai Tietz

xm-mingw32.h (__USE_MINGW_ANSI_STDIO): Enable POSIX-printf for mingw-hosted builds.

        * config/i386/xm-mingw32.h (__USE_MINGW_ANSI_STDIO): Enable
        POSIX-printf for mingw-hosted  builds.

From-SVN: r197049
parent c16fd676
2013-03-25 Kai Tietz <ktietz@redhat.com>
* config/i386/xm-mingw32.h (__USE_MINGW_ANSI_STDIO): Enable
POSIX-printf for mingw-hosted builds.
2013-03-25 Richard Biener <rguenther@suse.de>
PR middle-end/56694
......
......@@ -29,6 +29,12 @@ along with GCC; see the file COPYING3. If not see
/* The st_ino field of struct stat is always 0. */
#define HOST_LACKS_INODE_NUMBERS
#ifdef __MINGW32__
#undef __USE_MINGW_ANSI_STDIO
#define __USE_MINGW_ANSI_STDIO 1
#else
/* MSVCRT does not support the "ll" format specifier for printing
"long long" values. Instead, we use "I64". */
#define HOST_LONG_LONG_FORMAT "I64"
#endif
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment