Adding detection of 64bit for powerpc (patch from Stephen Lewis).

This commit is contained in:
Alex Shinn 2013-04-24 23:43:16 +09:00
parent 4e14a4ecbd
commit 98863f53cb

View file

@ -256,7 +256,7 @@
/************************************************************************/
#ifndef SEXP_64_BIT
#if defined(__amd64) || defined(__x86_64) || defined(_WIN64) || defined(_Wp64)
#if defined(__amd64) || defined(__x86_64) || defined(_WIN64) || defined(_Wp64) || defined(__LP64__) || defined(__PPC64__)
#define SEXP_64_BIT 1
#else
#define SEXP_64_BIT 0