mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-16 12:58:33 +02:00
CMake: Fix building ARM64 on Windows
This commit is contained in:
@ -11,9 +11,13 @@
|
||||
#include "Common/CommonFuncs.h"
|
||||
#include "Common/Intrinsics.h"
|
||||
|
||||
#if defined(_M_ARM_64) && !defined(_MSC_VER)
|
||||
#ifdef _M_ARM_64
|
||||
#ifdef _MSC_VER
|
||||
#include <intrin.h>
|
||||
#else
|
||||
#include <arm_acle.h>
|
||||
#endif
|
||||
#endif
|
||||
|
||||
namespace Common
|
||||
{
|
||||
|
Reference in New Issue
Block a user