diff options
author | Jeffrey Walton <noloader@gmail.com> | 2020-07-28 22:50:25 -0400 |
---|---|---|
committer | Jeffrey Walton <noloader@gmail.com> | 2020-07-28 22:50:25 -0400 |
commit | 0637ac9ab1b199327e761ff77c020364963ab1d2 (patch) | |
tree | c62bd0580f9539c7903ab4691f1f1936b53098b5 /TestScripts | |
parent | fa6a7b5fc8f26782c2984b5d6ee3f4bc54641468 (diff) | |
download | cryptopp-git-0637ac9ab1b199327e761ff77c020364963ab1d2.tar.gz |
Fix Aarch64 compile when using configure.sh (GH #950)
Diffstat (limited to 'TestScripts')
-rwxr-xr-x | TestScripts/configure.sh | 2 |
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 |