diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-05-27 22:47:41 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-05-27 22:47:41 +0300 |
commit | 9879ead9d355dd09336b76e6954372fe72fb8b83 (patch) | |
tree | 0c85a88af62db069d266575b4f28e0872885412a | |
parent | 24e16e1b0ab550a0306d4779cbcc5d88a55a5446 (diff) | |
download | plus-9879ead9d355dd09336b76e6954372fe72fb8b83.tar.gz plus-9879ead9d355dd09336b76e6954372fe72fb8b83.tar.bz2 plus-9879ead9d355dd09336b76e6954372fe72fb8b83.tar.xz plus-9879ead9d355dd09336b76e6954372fe72fb8b83.zip |
Allow simd builds for windows 64 bit.
-rw-r--r-- | src/localconsts.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/localconsts.h b/src/localconsts.h index 8e0a24bf7..a774fc673 100644 --- a/src/localconsts.h +++ b/src/localconsts.h @@ -142,13 +142,10 @@ #if !defined(__clang__) && defined(__GNUC__) // not for FreeBSD #if !defined(__FreeBSD_kernel__) || !defined(__GLIBC__) -// not works in mingw -#ifndef WIN64 // gcc 4.8 look like support avx2, but need global define for enable any SIMD #if GCC_VERSION >= 40900 #define SIMD_SUPPORTED #endif // GCC_VERSION > 40900 -#endif // WIN64 #endif // !defined(__FreeBSD_kernel__) || !defined(__GLIBC__) #endif // !defined(__clang__) && defined(__GNUC__) #endif // __x86_64__ |