Remove unneeded fixup for CRYPTOPP_ARM_PMULL_AVAILABLE

Once we switched to GCC inline assembly the Apple/Clang problems went away.
This commit is contained in:
Jeffrey Walton 2021-03-06 03:34:04 -05:00
parent 8ea8bcfb94
commit 7e2821cc48
No known key found for this signature in database
GPG Key ID: B36AB348921B1838

View File

@ -378,12 +378,6 @@
# undef CRYPTOPP_ARM_ACLE_HEADER
#endif
// Fixup Apple Clang and PMULL. Apple defines __ARM_FEATURE_CRYPTO for Xcode 6
// but does not provide PMULL. TODO: determine when PMULL is available.
#if defined(CRYPTOPP_APPLE_CLANG_VERSION) && (CRYPTOPP_APPLE_CLANG_VERSION < 70000)
# undef CRYPTOPP_ARM_PMULL_AVAILABLE
#endif
// Disable for Android. Android only offers the base Aarch64 architecture.
// Also see https://developer.android.com/ndk/guides/abis
#if defined(__ANDROID__) || defined(ANDROID)