From d8b30941c4852ff30a96e6149ec114e1f4e67a7c Mon Sep 17 00:00:00 2001 From: hyzboy Date: Thu, 12 Dec 2019 17:24:59 +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 37589cf..2b2cf1f 100644 --- a/inc/hgl/platform/Platform.h +++ b/inc/hgl/platform/Platform.h @@ -118,8 +118,8 @@ #define HGL_ENDIAN HGL_LITTLE_ENDIAN #elif defined(__aarch64__) #define HGL_CPU HGL_CPU_ARM64 - #define HGL_CPU_NAME OS_TEXT("ARM64") - #define HGL_LIB_CPU_NAME OS_TEXT("ARM64") + #define HGL_CPU_NAME OS_TEXT("aarch64") + #define HGL_LIB_CPU_NAME OS_TEXT("aarch64") #define HGL_MIN_MEMORY_ALLOC_BYTES 4 #define HGL_ENDIAN HGL_LITTLE_ENDIAN #elif defined(__wasm__)