c0e157e3b2
One must build yasm (included in the yasm directory) before building GMP, if building on an x86_64 machine. Note: make test and make tune do not currently build.
9 lines
149 B
C
9 lines
149 B
C
#ifndef _UINTPTR_T_DEFINED
|
|
#ifdef _WIN64
|
|
#include <vadefs.h>
|
|
#else
|
|
typedef unsigned long uintptr_t;
|
|
#endif
|
|
#define _UINTPTR_T_DEFINED
|
|
#endif
|