From c54e7d0f0f2cba2f1f8147fd50dedfb5ee9a7eb4 Mon Sep 17 00:00:00 2001 From: Christian Helmuth Date: Mon, 16 Dec 2019 14:59:29 +0100 Subject: [PATCH] Build fix for crypto++ on ARM64 Issue #142 Fixes #184 --- lib/mk/cryptopp.mk | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/mk/cryptopp.mk b/lib/mk/cryptopp.mk index f0a9b24..e879cfa 100644 --- a/lib/mk/cryptopp.mk +++ b/lib/mk/cryptopp.mk @@ -10,7 +10,8 @@ SRC_CC += $(filter-out $(CRYPTOPP_FILTER),$(CRYPTOPP_SRC)) CXX_DEF += -DCRYPTOPP_DISABLE_SSSE3 -ifeq ($(filter-out $(SPECS),arm),) + +ifneq ($(filter $(SPECS),arm arm_64),) CXX_DEF += -DCRYPTOPP_DISABLE_ASM endif