Commit b8203b2e authored by Davis E. King's avatar Davis E. King

Merge pull request #91 from e-fominov/msvcx64-sse2-support

MSVC x64 SSE2 automatical support
parents c8aa1312 bb0ac566
......@@ -22,7 +22,7 @@
#define DLIB_HAVE_AVX
#endif
#endif
#if defined(_M_IX86_FP) && _M_IX86_FP >= 2 && !defined(DLIB_HAVE_SSE2)
#if (defined( _M_X64) || defined(_M_IX86_FP) && _M_IX86_FP >= 2) && !defined(DLIB_HAVE_SSE2)
#define DLIB_HAVE_SSE2
#endif
#else
......
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