Correct includes for mingw in slow-hash

This needs testing
This commit is contained in:
Zachary Michaels 2014-08-06 13:07:36 -04:00 committed by Riccardo Spagni
parent 2b76e9d8a3
commit cf91545734
1 changed files with 8 additions and 0 deletions

View File

@ -47,6 +47,14 @@
#if !defined(RDATA_ALIGN16)
#define RDATA_ALIGN16 __declspec(align(16))
#endif
#elif defined(__MINGW32__)
#include <intrin.h>
#include <windows.h>
#define STATIC static
#define INLINE inline
#if !defined(RDATA_ALIGN16)
#define RDATA_ALIGN16 __attribute__ ((aligned(16)))
#endif
#else
#include <wmmintrin.h>
#include <sys/mman.h>