On Sat, Jun 17, 2017 at 12:00:31AM +0500, Muhammad ILYAS wrote:
and now the first search for "error":gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.4) configure:4514: $? = 0 configure:4503: mpicc -V >&5 gcc: error: unrecognized command line option '-V' gcc: fatal error: no input files compilation terminated.
configure tries lots of things to see what works, so seeing errors in the log is expected. Usually it is the last error you are interested in, the one that in the end is fatal and lets configure abort.
configure:5669: mpicc -c conftest.c >&5
conftest.c: In function 'main':
conftest.c:57:21: error: expected expression before ')' token
if (sizeof ((size_t)))
^
configure:5669: $? = 1
Is this the last error in your config.log? This seems to be part of the 'ac_fn_c_check_type' check, in this case checking the existence of size_t. So, this indicates that size_t is not known at compile time. size_t comes from stdlib.h Those should have been detected by configure beforehand. Check for ia line:
checking for ANSI C header fileIt should say "yes" there. This is a good example of why attaching the complete config.log would be helpful.
Frank
signature.asc
Description: Digital signature
_______________________________________________ Hdf-forum is for HDF software users discussion. [email protected] http://lists.hdfgroup.org/mailman/listinfo/hdf-forum_lists.hdfgroup.org Twitter: https://twitter.com/hdf5
