From 823c709f419e10a1beaaa7dd31a87c4f9d9e8c8d Mon Sep 17 00:00:00 2001 From: Yuvaraj Gogoi Date: Fri, 17 Jan 2014 03:32:58 +0530 Subject: [PATCH] Fix for issue #216 Build fails on Linux 32 bit - __mm_crc32_u64 --- src/crypto/city.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/crypto/city.cpp b/src/crypto/city.cpp index 67e77eb..0100c6a 100644 --- a/src/crypto/city.cpp +++ b/src/crypto/city.cpp @@ -33,7 +33,7 @@ #include #include // for memcpy and memset #include -#ifdef __SSE4_2__ +#if defined(__SSE4_2__) && defined(__x86_64__) #include #else uint64_t _mm_crc32_u64(uint64_t a, uint64_t b );