Blenlib/Windows: Fix Build error with clang.

__cpuid comes from intrin.h which was implicitly included somewhere
for msvc builds, but not for clang.
This commit is contained in:
Ray Molenkamp
2019-02-16 11:42:55 -07:00
parent b428929319
commit d8293fd6be

View File

@@ -31,6 +31,7 @@
#if defined(__linux__) || defined(__APPLE__)
# include <execinfo.h>
#elif defined(WIN32)
# include <intrin.h>
# include <windows.h>
# include <dbghelp.h>
#endif