From e2c087adf039e9303a945cbd1a72a7cb7b0d8cc6 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Thu, 22 Dec 2016 19:34:26 +0300 Subject: Fix compilation with old gcc. --- src/localconsts.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/localconsts.h') diff --git a/src/localconsts.h b/src/localconsts.h index 544b85a02..d237d93eb 100644 --- a/src/localconsts.h +++ b/src/localconsts.h @@ -139,9 +139,11 @@ #endif // ENABLE_CILKPLUS #ifdef __x86_64__ -#ifndef __clang__ +#if !defined(__clang__) && defined(__GNUC__) +#if GCC_VERSION >= 40700 #define SIMD_SUPPORTED -#endif // __clang__ +#endif // GCC_VERSION > 40700 +#endif // !defined(__clang__) && defined(__GNUC__) #endif // __x86_64__ #ifdef SIMD_SUPPORTED -- cgit v1.2.3-60-g2f50