From e3e1acb092a5ba8ddc4dcb116ec4bcf7686e140d Mon Sep 17 00:00:00 2001 From: Haru Date: Sun, 28 Jun 2020 01:26:45 +0200 Subject: Add detection of ARMv8 and improve detection of ARMv7 Signed-off-by: Haru --- src/common/atomic.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/common/atomic.h') diff --git a/src/common/atomic.h b/src/common/atomic.h index 0d15d50d7..b9157373f 100644 --- a/src/common/atomic.h +++ b/src/common/atomic.h @@ -103,8 +103,9 @@ forceinline volatile int64 InterlockedExchange64(volatile int64 *target, int64 v // The __sync functions are available on x86 or ARMv6+ #if !defined(__x86_64__) && !defined(__i386__) \ + && !defined(__ppc64__) && ! defined(__powerpc64__) \ && ( !defined(__ARM_ARCH_VERSION__) || __ARM_ARCH_VERSION__ < 6 ) -//#error Your Target Platfrom is not supported +#error Target platform currently not supported #endif static forceinline int64 InterlockedExchangeAdd64(volatile int64 *addend, int64 increment){ -- cgit v1.2.3-60-g2f50