File xxhash-avoid-armv6-unaligned-access.patch of Package python-grpcio
14
1
Index: xxHash-0.8.1/xxhash.h
2
===================================================================
3
--- xxHash-0.8.1.orig/xxhash.h
4
+++ xxHash-0.8.1/xxhash.h
5
6
(defined(__INTEL_COMPILER) && !defined(_WIN32)) || \
7
( \
8
defined(__GNUC__) && ( \
9
- (defined(__ARM_ARCH) && __ARM_ARCH >= 7) || \
10
+ (defined(__ARM_ARCH) && __ARM_ARCH >= 6) || \
11
( \
12
defined(__mips__) && \
13
(__mips <= 5 || __mips_isa_rev < 6) && \
14