From b2c38f07a24b05e56271a6bf6a7f7032eb447bb4 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Sat, 28 May 2016 10:19:21 -0400 Subject: [PATCH] Fix ARm-64 detection --- cryptest.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cryptest.sh b/cryptest.sh index cf6a5aa6..4ef870a8 100755 --- a/cryptest.sh +++ b/cryptest.sh @@ -47,7 +47,7 @@ IS_X86=$(uname -m | egrep -i -c "(i386|i586|i686|amd64|x86_64)") IS_X64=$(uname -m | egrep -i -c "(amd64|x86_64)") IS_PPC=$(uname -m | egrep -i -c "(Power|PPC)") IS_ARM32=$(uname -m | egrep -i -c "arm|aarch32") -IS_ARM64=$(uname -m | egrep -i -c "arm|aarch64") +IS_ARM64=$(uname -m | egrep -i -c "arm64|aarch64") # We need to use the C++ compiler to determine if c++11 is available. Otherwise # a mis-detection occurs on Mac OS X 10.9 and above. Below, we use the same