mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-31 21:28:51 +00:00
CMake: Fix building ARM64 on Windows
This commit is contained in:
parent
a9dc4ac3f0
commit
213a9adcff
6 changed files with 72 additions and 5 deletions
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue