Test for 64-bit instead of assuming it
This commit is contained in:
parent
124bd6a140
commit
a9b126783d
|
@ -2,7 +2,11 @@ typedef uintptr_t value_t;
|
||||||
typedef uintptr_t ufixnum_t;
|
typedef uintptr_t ufixnum_t;
|
||||||
typedef intptr_t fixnum_t;
|
typedef intptr_t fixnum_t;
|
||||||
|
|
||||||
|
#undef BITS64
|
||||||
|
#if UINTPTR_MAX == 0xffffffffffffffffULL
|
||||||
#define BITS64
|
#define BITS64
|
||||||
|
#endif
|
||||||
|
|
||||||
#define SCHEME_C_COMPILER_NAME "GCC" // TODO: wrong
|
#define SCHEME_C_COMPILER_NAME "GCC" // TODO: wrong
|
||||||
#define SCHEME_C_COMPILER_VERSION __VERSION__
|
#define SCHEME_C_COMPILER_VERSION __VERSION__
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue