summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorFabrice Fontaine <fontaine.fabrice@gmail.com>2019-02-22 00:34:32 +0100
committerJeffrey Walton <noloader@gmail.com>2019-02-21 18:34:32 -0500
commita809dbdbc469a8de7c960eae0f4334700cc4d83a (patch)
tree0da8d6069c6a9a5984c44c991a48ca5db7960c22 /config.h
parent0239393a22d3f8d3d20f3004226dfca6d1b47235 (diff)
downloadcryptopp-git-a809dbdbc469a8de7c960eae0f4334700cc4d83a.tar.gz
AVX2 depends on GCC 4.9 (PR #809)
Diffstat (limited to 'config.h')
-rw-r--r--config.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/config.h b/config.h
index eccba009..4516d2b3 100644
--- a/config.h
+++ b/config.h
@@ -591,7 +591,7 @@ NAMESPACE_END
// Requires Binutils 2.24
#if !defined(CRYPTOPP_DISABLE_AVX2) && defined(CRYPTOPP_AVX_AVAILABLE) && \
(defined(__AVX2__) || (CRYPTOPP_MSC_VERSION >= 1800) || (__SUNPRO_CC >= 0x5130) || \
- (CRYPTOPP_GCC_VERSION >= 40700) || (__INTEL_COMPILER >= 1400) || \
+ (CRYPTOPP_GCC_VERSION >= 40900) || (__INTEL_COMPILER >= 1400) || \
(CRYPTOPP_LLVM_CLANG_VERSION >= 30100) || (CRYPTOPP_APPLE_CLANG_VERSION >= 40600))
#define CRYPTOPP_AVX2_AVAILABLE 1
#endif