From 5e3e5ccbea2ab90548fc82c5d730dea2c9315a16 Mon Sep 17 00:00:00 2001 From: SergMariaDB <91733807+SergMariaDB@users.noreply.github.com> Date: Mon, 11 Oct 2021 08:26:33 -0400 Subject: Apple Silicon is a 64-bit platform (#1922) Co-authored-by: FX Coudert --- include/my_global.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') diff --git a/include/my_global.h b/include/my_global.h index 5e96400eac1..dba63e75097 100644 --- a/include/my_global.h +++ b/include/my_global.h @@ -164,7 +164,7 @@ # if defined(__i386__) || defined(__ppc__) # define SIZEOF_CHARP 4 # define SIZEOF_LONG 4 -# elif defined(__x86_64__) || defined(__ppc64__) +# elif defined(__x86_64__) || defined(__ppc64__) || defined(__aarch64__) # define SIZEOF_CHARP 8 # define SIZEOF_LONG 8 # else -- cgit v1.2.1