From 589a7afc3e88c59a9b51b1a3af3339af3ad61e8c Mon Sep 17 00:00:00 2001 From: narbatucker Date: Sun, 25 Jun 2017 17:16:56 +0100 Subject: fix macOS build for platform x86_64 --- src/qcommon/q_platform.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/qcommon') diff --git a/src/qcommon/q_platform.h b/src/qcommon/q_platform.h index 9f037c6..003bd98 100644 --- a/src/qcommon/q_platform.h +++ b/src/qcommon/q_platform.h @@ -113,6 +113,9 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA #elif defined __i386__ #define ARCH_STRING "x86" #define Q3_LITTLE_ENDIAN +#elif defined __x86_64__ +#define ARCH_STRING "x86_64" +#define Q3_LITTLE_ENDIAN #endif #define DLL_EXT ".dylib" -- cgit