configure problem  [SOLVED]

option, parallelism,...

Moderators: fgoudreault, mcote

Forum rules
Please have a look at ~abinit/doc/config/build-config.ac in the source package for detailed and up-to-date information about the configuration of Abinit 8 builds.
For a video explanation on how to build Abinit 7.x for Linux, please go to: http://www.youtube.com/watch?v=DppLQ-KQA68.
IMPORTANT: when an answer solves your problem, please check the little green V-like button on its upper-right corner to accept it.
Locked
qingping
Posts: 10
Joined: Mon Jul 06, 2015 7:21 pm

configure problem

Post by qingping » Fri Jul 17, 2015 5:36 pm

Dear all,
My configure file is:

enable_mpi="yes"
enable_mpi_io="yes"
enable_openmp="yes"
with_mpi_prefix="/usr"
with_netcdf_incs="-I/usr/include"
with_netcdf_libs="-L/usr/lib64 -lnetcdf -lnetcdff"
with_fft_flavor="fftw3"
with_fft_incs="-I/usr/include/"
with_fft_libs="-L/usr/lib64 -lfftw3 -lfftw3f"
with_linalg_flavor="atlas"
with_linalg_libs="-L/usr/lib64 -llapack -lf77blas -lcblas -latlas"
with_dft_flavor="atompaw+bigdft+libxc+wannier90"
enable_gw_dpc="yes"

configure result is:

checking whether to enable OpenMP support... yes
checking Fortran flags for OpenMP... -fopenmp
checking whether OpenMP's COLLAPSE works... yes
configure: OpenMP support is enabled in Fortran source code only
checking whether to build MPI code... yes
checking whether MPI is usable... no
configure: error: MPI support is broken - please fix your config parameters and/or MPI installation

I attach the config.log. Could you tell me how to solve the problem. Thank you.
Best wishes,
Qingping
Attachments
config.log
(84.07 KiB) Downloaded 292 times

qingping
Posts: 10
Joined: Mon Jul 06, 2015 7:21 pm

Re: configure problem  [SOLVED]

Post by qingping » Fri Jul 17, 2015 9:55 pm

I solve the problem
install mpich, and add
enable_mpich="yes"
into name.ac file.

Locked