Fixed cygwin compilation
This commit is contained in:
parent
7cc2595a7b
commit
fbd607d35d
|
@ -32,7 +32,7 @@
|
|||
#include <algorithm>
|
||||
#include <climits>
|
||||
|
||||
#if defined(__GNUC__) && !defined(__MINGW32__)
|
||||
#if defined(__GNUC__) && !defined(__MINGW32__) && !defined(__CYGWIN__)
|
||||
#define USE_UNIX_SIGNAL_HANDLING
|
||||
#include <execinfo.h>
|
||||
#include <cxxabi.h>
|
||||
|
@ -43,7 +43,7 @@
|
|||
#include <cstdio>
|
||||
#endif
|
||||
|
||||
#if defined(_MSC_VER) && !defined(__MINGW32__)
|
||||
#if defined(_MSC_VER)
|
||||
#define USE_WINDOWS_SEH
|
||||
#include <Windows.h>
|
||||
#include <excpt.h>
|
||||
|
|
Loading…
Reference in New Issue