From 581eee5e3a215c0e76f6976f49d1661b5071fce4 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Sun, 23 Jan 2022 02:00:32 +0100 Subject: [PATCH] use XXH_VECTOR=XXH_SCALAR (0) to avoid compile issues --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 155ead7e0..1fe324666 100644 --- a/setup.py +++ b/setup.py @@ -225,6 +225,7 @@ if prefer_system_libxxhash and libxxhash_prefix: define_macros.append(('XXH_PRIVATE_API', 'YES')) # do not use this for bundled zstd or xxh64, breaks the build libxxhash_system = True else: + define_macros.append(('XXH_VECTOR', '0')) # avoid compile issues with CPU specific stuff libxxhash_system = False