When building lam-mpi using Intel compiler we get the following error while
running recon.
Thanks.
Nooshin
This is the error that we see:
pluto.jpl.nasa.gov[2]% recon -v
n-1<30639> ssi:boot:base:linear: booting n0 (137.78.73.111)
n-1<30639> ssi:boot:base:linear: booting n1 (192.168.50.10)
ERROR: LAM/MPI unexpectedly received the following on stderr:
tkill: error while loading shared libraries: libcxa.so.3: cannot open
shared object file: No such file or directory
This is the version of the Intel Fortran compiler:
pluto.jpl.nasa.gov[40]% ifc -V
Intel(R) Fortran Compiler for 32-bit applications, Version 7.1 Build
20040309Z
Copyright (C) 1985-2004 Intel Corporation. All rights reserved.
This is the version of the Intel C/C++ compiler:
pluto.jpl.nasa.gov[41]% icc -V
Intel(R) C++ Compiler for 32-bit applications, Version 7.1 Build
20040511Z
Copyright (C) 1985-2004 Intel Corporation. All rights reserved.
GNU ld version 2.13.90.0.18 20030206
Supported emulations:
elf_i386
i386linux
Here is our configure script:
#!/bin/csh
# LAM-MPI build script for Intel compilers.
setenv LAMRSH "rsh"
# edit the next "couple" of lines
setenv INTEL_HOME /opt/intel/compiler70/ia32
setenv CC $INTEL_HOME/bin/icc
setenv CXX $INTEL_HOME/bin/icpc
setenv FC $INTEL_HOME/bin/ifc
setenv CFLAGS "-I/usr/include"
setenv PREFIX /home/packages/bin/mpi/lam/intel
rm -f config-mine.log
./configure --prefix=$PREFIX \
>& config-mine.log
tail config-mine.log
rm -f make-mine.log
make all >& make-mine.log
tail make-mine.log
rm -f install-mine.log
make install >& install-mine.log
tail install-mine.log
|