From 328e6d2f26f0cbd15104dd817798f20cc624ea80 Mon Sep 17 00:00:00 2001 From: hyzboy Date: Thu, 12 Dec 2019 17:26:06 +0800 Subject: [PATCH] use "AARCH64" insted "ARM64" --- inc/hgl/platform/Platform.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/inc/hgl/platform/Platform.h b/inc/hgl/platform/Platform.h index 2b2cf1f..e9aafff 100644 --- a/inc/hgl/platform/Platform.h +++ b/inc/hgl/platform/Platform.h @@ -32,7 +32,7 @@ #define HGL_CPU_PowerPC64 HGL_MERGE32('P','P','6','4') #define HGL_CPU_Cell HGL_MERGE32('C','E','L','L') #define HGL_CPU_ARM7 HGL_MERGE32('A','R','M','7') -#define HGL_CPU_ARM64 HGL_MERGE32('A','R','6','4') +#define HGL_CPU_AARCH64 HGL_MERGE32('A','R','6','4') #define HGL_COMPILER_Microsoft HGL_MERGE32('M','S','C',' ') #define HGL_COMPILER_GNU HGL_MERGE32('G','N','U',' ') @@ -117,7 +117,7 @@ #define HGL_MIN_MEMORY_ALLOC_BYTES 4 #define HGL_ENDIAN HGL_LITTLE_ENDIAN #elif defined(__aarch64__) - #define HGL_CPU HGL_CPU_ARM64 + #define HGL_CPU HGL_CPU_AARCH64 #define HGL_CPU_NAME OS_TEXT("aarch64") #define HGL_LIB_CPU_NAME OS_TEXT("aarch64") #define HGL_MIN_MEMORY_ALLOC_BYTES 4