From 3289aad8bd6a9b8b8e9f9491234c66160fbf6164 Mon Sep 17 00:00:00 2001 From: Haru Date: Fri, 7 Mar 2014 03:37:57 +0100 Subject: Tweaked a platform check to support ARMv6+ Signed-off-by: Haru --- src/common/atomic.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/common/atomic.h') diff --git a/src/common/atomic.h b/src/common/atomic.h index c2227a9d4..8c01943e7 100644 --- a/src/common/atomic.h +++ b/src/common/atomic.h @@ -87,7 +87,9 @@ forceinline volatile int64 InterlockedExchange64(volatile int64 *target, int64 v #elif defined(__GNUC__) -#if !defined(__x86_64__) && !defined(__i386__) +// The __sync functions are available on x86 or ARMv6+ +#if !defined(__x86_64__) && !defined(__i386__) \ + && ( !defined(__ARM_ARCH_VERSION__) || __ARM_ARCH_VERSION__ < 6 ) #error Your Target Platfrom is not supported #endif -- cgit v1.2.3-60-g2f50