Commit 7e8338d8 by Bernd Edlinger Committed by Bernd Edlinger

Fix build under cygwin/64.

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
parent b833dedd
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
......
......@@ -36,7 +36,7 @@ extern "C" {
#include <sys/stat.h>
#include <stdio.h>
#ifdef _WIN32
#if defined (_WIN32) || defined (__CYGWIN__)
#include "mingw32.h"
#endif
......
......@@ -52,6 +52,11 @@
#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
......
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