From de1d478d2cd91ba9c81faf8cc056672a646d3f0e Mon Sep 17 00:00:00 2001 From: Aleksander Czajczynski Date: Sun, 2 Sep 2018 23:09:29 +0200 Subject: [PATCH] 2018-09-02 23:07 UTC+0200 Aleksander Czajczynski (hb fki.pl) * include/hbsetup.h * changed to recognize ARM64 platform with modern GCC builds --- ChangeLog.txt | 4 ++++ contrib/hbexpat/3rd/expat/xmltok.c | 0 include/hbsetup.h | 3 ++- src/compiler/hbusage.c | 0 4 files changed, 6 insertions(+), 1 deletion(-) mode change 100755 => 100644 contrib/hbexpat/3rd/expat/xmltok.c mode change 100755 => 100644 src/compiler/hbusage.c diff --git a/ChangeLog.txt b/ChangeLog.txt index 1b05385b04..09fe5d3582 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -7,6 +7,10 @@ Entries may not always be in chronological/commit order. See license at the end of file. */ +2018-09-02 23:07 UTC+0200 Aleksander Czajczynski (hb fki.pl) + * include/hbsetup.h + * changed to recognize ARM64 platform with modern GCC builds + 2018-06-04 01:30 UTC-0300 Lailton Fernando Mariano (lailton/at/harbour.com.br) * contrib/hbexpat/3rd/expat/xmltok.c ! fixed compiler error for BCC <= 5.8.2 diff --git a/contrib/hbexpat/3rd/expat/xmltok.c b/contrib/hbexpat/3rd/expat/xmltok.c old mode 100755 new mode 100644 diff --git a/include/hbsetup.h b/include/hbsetup.h index f8e4602a2c..9ade03471e 100644 --- a/include/hbsetup.h +++ b/include/hbsetup.h @@ -151,7 +151,8 @@ defined( __MINGW64__ ) #define HB_CPU_X86_64 -#elif defined( __arm64__ ) +#elif defined( __arm64__ ) || \ + defined( __aarch64__ ) #define HB_CPU_ARM_64 #elif defined( __arm__ ) || \ diff --git a/src/compiler/hbusage.c b/src/compiler/hbusage.c old mode 100755 new mode 100644