|
From: Eli Z. <el...@gn...> - 2014-06-12 17:41:37
|
> Date: Thu, 12 Jun 2014 18:04:35 +0100 > From: Pedro Sousa <ped...@gm...> > > Sorry forget the config.log attachment Thanks. Here's your problem: > configure:15613: checking string usability > configure:15613: g++ -c -g -O2 conftest.cpp >&5 > conftest.cpp:48:23: inttypes.h: No such file or directory > conftest.cpp:51:21: stdint.h: No such file or directory IOW, when your compiler is invoked as "g++" (as opposed to "mingw32-g++", which was used in all the previous tests done by the configure script), it cannot find its header files. Now, my question to you is why do you have mingw32-g++.exe, but no g++.exe? I have both in my GCC installation. |