Browse Source

AK: Add support for ARCH(AARCH64) to Platform.h

James Mintram 3 years ago
parent
commit
af2761600d
1 changed files with 4 additions and 0 deletions
  1. 4 0
      AK/Platform.h

+ 4 - 0
AK/Platform.h

@@ -14,6 +14,10 @@
 #    define AK_ARCH_X86_64 1
 #endif
 
+#ifdef __aarch64__
+#    define AK_ARCH_AARCH64 1
+#endif
+
 #if defined(__APPLE__) && defined(__MACH__)
 #    define AK_OS_MACOS
 #    define AK_OS_BSD_GENERIC