Fix compilation on unofficial 64bit archs

This commit is contained in:
Matteo F. Vescovi
2014-03-24 08:48:07 +01:00
committed by Sergey Sharybin
parent 9b23d9acec
commit 4b2c826178

View File

@@ -61,7 +61,7 @@
# endif
#endif
#if defined(_M_X64) || defined(__amd64__) || defined(__x86_64__)
#if defined(_M_X64) || defined(__amd64__) || defined(__x86_64__) || defined(__s390x__) || defined(__powerpc64__) || defined(__aarch64__) || (defined(__sparc__) && defined(__arch64__))
# define LG_SIZEOF_PTR 3
# define LG_SIZEOF_INT 2
#else