Add HAVE_INTRIN_H

This commit is contained in:
Francois Kritzinger 2022-04-14 13:50:38 +02:00
parent 701dcd4e9f
commit 8e969c04e2

View File

@ -0,0 +1,10 @@
// HAVE_INTRIN_H
#undef HAVE_INTRIN_H
/* Windows only: MSVC, MinGW-W64, and Clang.
*/
#if defined(_WIN32) && \
(defined(_MSV_VER) || defined(__MINGW32__) || defined(__clang__))
# define HAVE_INTRIN_H 1
#endif