summaryrefslogtreecommitdiff
path: root/TestScripts
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2020-07-28 22:50:25 -0400
committerJeffrey Walton <noloader@gmail.com>2020-07-28 22:50:25 -0400
commit0637ac9ab1b199327e761ff77c020364963ab1d2 (patch)
treec62bd0580f9539c7903ab4691f1f1936b53098b5 /TestScripts
parentfa6a7b5fc8f26782c2984b5d6ee3f4bc54641468 (diff)
downloadcryptopp-git-0637ac9ab1b199327e761ff77c020364963ab1d2.tar.gz
Fix Aarch64 compile when using configure.sh (GH #950)
Diffstat (limited to 'TestScripts')
-rwxr-xr-xTestScripts/configure.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/TestScripts/configure.sh b/TestScripts/configure.sh
index 9d207e02..7cad6c54 100755
--- a/TestScripts/configure.sh
+++ b/TestScripts/configure.sh
@@ -328,7 +328,7 @@ if [[ "$IS_ARMV8" -ne 0 ]]; then
# Shell redirection
{
- CXX_RESULT=$(${CXX} ${CXXFLAGS} -mfpu=neon TestPrograms/test_arm_neon.cxx -o ${TOUT} 2>&1 | tr ' ' '\n' | wc -l)
+ CXX_RESULT=$(${CXX} ${CXXFLAGS} TestPrograms/test_arm_neon.cxx -o ${TOUT} 2>&1 | tr ' ' '\n' | wc -l)
if [[ "${CXX_RESULT}" -eq 0 ]]; then
echo '#define CRYPTOPP_ARM_NEON_HEADER 1'
fi