2015-01-27 Bernd Edlinger <bernd.edlinger@hotmail.de>
Fix build under cygwin/64.
* adaint.h: Add check for __CYGWIN__.
* mingw32.h: Prevent windows.h from including x86intrin.h in GCC.
From-SVN: r220180
+2015-01-27 Bernd Edlinger <bernd.edlinger@hotmail.de>
+
+ Fix build under cygwin/64.
+ * adaint.h: Add check for __CYGWIN__.
+ * mingw32.h: Prevent windows.h from including x86intrin.h in GCC.
+
2015-01-19 Bernd Edlinger <bernd.edlinger@hotmail.de>
PR ada/64640
#include <sys/stat.h>
#include <stdio.h>
-#ifdef _WIN32
+#if defined (_WIN32) || defined (__CYGWIN__)
#include "mingw32.h"
#endif
#ifndef __CYGWIN__
#include <tchar.h>
#endif
+#if defined (__CYGWIN__) && !defined (__CYGWIN32__) && !defined (IN_RTS)
+/* Note: windows.h on cygwin-64 includes x86intrin.h which uses malloc.
+ That fails to compile, if malloc is poisoned, i.e. if !IN_RTS. */
+#define _X86INTRIN_H_INCLUDED
+#endif
#include <windows.h>
#ifndef _O_U8TEXT