Hello,
After installing Snow Leopard, I rebulit openMPI 1.3.3 and wrap intel
Compilers v 11.1.058. To do this, I used that small shell script :
#! /bin/bash
./configure --prefix=/usr/local/openmpi-1.3.3-
i64 \
CFLAGS="-arch x86_64" CXXFLAGS="-arch x86_64" FCFLAGS="-m64" \
F77=/opt/intel/Compiler/11.1/058/bin/intel64/
ifort \
FC=/opt/intel/Compiler/11.1/058/bin/intel64/ifort \
CC=/opt/intel/Compiler/11.1/058/bin/intel64/icc \
CXX=/opt/intel/Compiler/11.1/058/bin/intel64/icpc
make
make install
This seems to work but, when I try to use openMPI, I have a
Segmentation Fault
mpic++ -showme -> Segmentation fault
mpif90 -showme -> Segmentation fault
ompi_info -> Segmentation fault
...
Remark :
I don't beleive it is a problem with dynamic library, as you can see
my DYLD_LIBRARY_PATH path seems to be weel defined :
echo $DYLD_LIBRARY_PATH
:/opt/intel/Compiler/11.1/058/lib/:/opt/intel/Compiler/11.1/058/lib/
intel64/:/opt/intel/Compiler/11.1/058/Frameworks/mkl/lib/em64t:/usr/
local/openmpi-1.3.3-i64/lib:/usr/local/vtk-5.4.2/lib/vtk-5.4
@+
Christophe Peyret