I've now compiled and installed 7.1.2 with
./configure --prefix=/usr/local/lam/lam-7.1.2_intel \
--without-exflags \
--with-boot-tm=/var/spool/PBS \
CC=/opt/intel/cc/9.0/bin/icc \
CXX=/opt/intel/cc/9.0/bin/icpc \
FC=/opt/intel/fc/9.0/bin/ifort \
CPPFLAGS=-D_GLIBCXX_GTHREAD_USE_WEAK=0 \
CXXFLAGS=-pthread
make
make install
When I attempt to use Intel compilers on the test suite the configure
fails on
checking if have Fortran MPI bindings... no
checking if supposed to have Fortran MPI bindings... yes
configure: error: Cannot continue
my setup is
PATH="/usr/local/lam/lam-7.1.2_intel/bin:$PATH";export PATH
./configure --without-exflags \
CC=/opt/intel/cc/9.0/bin/icc \
CXX=/opt/intel/cc/9.0/bin/icpc \
FC=/opt/intel/fc/9.0/bin/ifort \
CPPFLAGS=-D_GLIBCXX_GTHREAD_USE_WEAK=0 \
CXXFLAGS=-pthread
if I just run
./configure
it sets up successfully to use the GNU compilers.
What have I missed?
Thanks,
Paul Van Allsburg
|