From 92e39893c4db4427360f9f3a5956f963bcd0a325 Mon Sep 17 00:00:00 2001 From: David CARLIER Date: Thu, 11 Mar 2021 22:15:03 +0000 Subject: [PATCH] Taking in account arm architecture for mac. --- shared/qcommon/q_platform.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/shared/qcommon/q_platform.h b/shared/qcommon/q_platform.h index 1c450d7d80..6303af70c9 100644 --- a/shared/qcommon/q_platform.h +++ b/shared/qcommon/q_platform.h @@ -108,6 +108,9 @@ along with this program; if not, see . #define idx64 #define ARCH_STRING "x86_64" #define Q3_LITTLE_ENDIAN + #elif defined(__aarch64__) + #define ARCH_STRING "arm64" + #define Q3_LITTLE_ENDIAN #endif #define DLL_EXT ".dylib"