I can't seem to get it working... I've tried the following...
Download : GMP,
MinGW and
Msys.
1 ) Put "c:/Dev-CPP" in the PATH variable.
2 ) Install MinGW
3 ) Install Msys
4 ) Unzip GMP
5 ) Run Msys
6 )
cd "location of GMP"
./configure --prefix="c:/dev-cpp"
make
make install
Then when I execute the code...
#include <gmp.h>
int main() {
mpz_t integ;
mpz_init (integ);
} I get...
[Linker error] undefined reference to `__gmpz_init'
Help?