Correct includes for mingw in slow-hash

This needs testing
release-v0.4.0.1
Zachary Michaels 10 years ago committed by Riccardo Spagni
parent 2b76e9d8a3
commit cf91545734

@ -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>

Loading…
Cancel
Save