From df15229eecb6b9af3e1ce3fdc6a908ee9f689f18 Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Tue, 13 Oct 2020 21:13:46 +1000 Subject: [PATCH] Common/CPUDetect: Add ARM64 for MSVC --- src/common/cpu_detect.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/common/cpu_detect.h b/src/common/cpu_detect.h index dd700b4ce..dc100f880 100644 --- a/src/common/cpu_detect.h +++ b/src/common/cpu_detect.h @@ -6,6 +6,8 @@ #define CPU_X64 1 #elif defined(_M_IX86) #define CPU_X86 1 +#elif defined(_M_ARM64) +#define CPU_AARCH64 1 #else #error Unknown architecture. #endif