Commit 5e3e5ccb authored by SergMariaDB's avatar SergMariaDB Committed by GitHub

Apple Silicon is a 64-bit platform (#1922)

Co-authored-by: default avatarFX Coudert <fxcoudert@gmail.com>
parent 89936f11
...@@ -164,7 +164,7 @@ ...@@ -164,7 +164,7 @@
# if defined(__i386__) || defined(__ppc__) # if defined(__i386__) || defined(__ppc__)
# define SIZEOF_CHARP 4 # define SIZEOF_CHARP 4
# define SIZEOF_LONG 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_CHARP 8
# define SIZEOF_LONG 8 # define SIZEOF_LONG 8
# else # else
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment