diff options
author | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2023-11-20 13:37:44 +0000 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2023-11-22 17:22:05 +0000 |
commit | 6045f38dc8f6a3e028e45fd0024d0b4c6b3cf918 (patch) | |
tree | 33ddde202bfb5d07b4ecb5b65dc6de5a41e0e77e | |
parent | 5eaa179f2785d74b621ff7edbe7fd8be9cdeb419 (diff) |
build: Fix regression in "ARMv8 CRC32 intrinsics" test
The `vmull_p64` is a part of the Crypto extensions from the ACLE. They
are optional extensions, so they get enabled with a `+crypto` for
architecture flags.
Github-Pull: #28919
Rebased-From: 228d6a2969e4fcee573c9df7aad31550eab9c8d4
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 11b40c31e1..64eeb52253 100644 --- a/configure.ac +++ b/configure.ac @@ -584,7 +584,7 @@ AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ CXXFLAGS="$TEMP_CXXFLAGS" # ARM -AX_CHECK_COMPILE_FLAG([-march=armv8-a+crc], [ARM_CRC_CXXFLAGS="-march=armv8-a+crc"], [], [$CXXFLAG_WERROR]) +AX_CHECK_COMPILE_FLAG([-march=armv8-a+crc+crypto], [ARM_CRC_CXXFLAGS="-march=armv8-a+crc+crypto"], [], [$CXXFLAG_WERROR]) AX_CHECK_COMPILE_FLAG([-march=armv8-a+crypto], [ARM_SHANI_CXXFLAGS="-march=armv8-a+crypto"], [], [$CXXFLAG_WERROR]) TEMP_CXXFLAGS="$CXXFLAGS" |