mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-22 07:09:18 +02:00
Adding detection of 64bit for powerpc (patch from Stephen Lewis).
This commit is contained in:
parent
4e14a4ecbd
commit
98863f53cb
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue