here I am again.

I just installed a brand new copy of mingw (32 bit) downloading it from the official project page from sourceforge: http://sourceforge.net/projects/mingw/. I installed everything in the package, all compilers and so on. Then I downloaded from here http://sourceforge.net/projects/mingw/files/MinGW/gmp/gmp-5.0.1-1/ gmp for mingw. I extracted gmp-5.0.1-1-mingw32-src.tar.lzma somewhere into my mingw folder, then run ./pkgbuild from there. It went on running for some minutes, then printed out something like "COMPLETED EVERYTHING OK, EVERYTHING PASS". Then I wrote down this simple example, to check if it was going to work:

#include <gmpxx.h>

int main (void)
{
  mpz_class a, b, c;

  a = 1234;
  b = "-5678";
  c = a+b;
  cout << "sum is " << c << "\n";
  cout << "absolute value is " << abs(c) << "\n";

  return 0;
}

And then compiled it using g++ mycxxprog.cc -lgmpxx -lgmp. The only answer I get is:

Fatal error: gmpxx.h: No such file or directory.

Does anybody have any hint? I don't really know what should I do...

Thank you very much!

Matteo

link|improve this question

41% accept rate
feedback

1 Answer

up vote 1 down vote accepted

You need to make sure the is among the directories searched for headers. Find the place where the gmpxx.h header resides and add -I /path/to/header/ on your g++ line.

link|improve this answer
Thank you very much! It worked!! – Matteo Monti Aug 31 '11 at 9:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.