From 9711fd1d4415866141b834becf447ba0a6a75361 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Fri, 6 May 2016 01:28:06 -0400 Subject: [PATCH] Add Windows ARM NEON dtection --- cpu.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/cpu.cpp b/cpu.cpp index 51938b74..8964d383 100644 --- a/cpu.cpp +++ b/cpu.cpp @@ -23,9 +23,11 @@ #endif #if CRYPTOPP_BOOL_NEON_INTRINSICS_AVAILABLE -#include -#include -#include +# if defined(__linux__) +# include +# include +# endif +# include #endif NAMESPACE_BEGIN(CryptoPP)