[OMPI users] Compiling HPCC with OpenMPI

2007-02-21 Thread Eric Thibodeau
Hello all, As we all know, compiling OpenMPI is not a matter of adding -lmpi (http://www.open-mpi.org/faq/?category=mpi-apps). I have tried many different approaches on configuring the 3 crucial MPI lines in the HPCC Makefiles with no success. There seems to be no correct way to get mpi

Re: [OMPI users] Compiling HPCC with OpenMPI

2007-02-21 Thread Laurent Nguyen
Hello, I believe that you are trying to use mpich, not openmpi (libmpich.a). Personnally, I've compiling HPCC on AIX IBM with OpenMPI with theses lines: # -- # - Message Passing library (MPI) --

Re: [OMPI users] Compiling HPCC with OpenMPI

2007-02-21 Thread Eric Thibodeau
Thanks Laurent, I will try your proposed settings. Note that I didn't want to use CC= and LINKER= since I dont know the probable impacts on the rest of the benchmarks...hmm...though this IS a clustering benchamrk. Also note that I wasn't trying to compile for MPICH, I merely copied the

Re: [OMPI users] Compiling HPCC with OpenMPI

2007-02-21 Thread George Bosilca
You should use something like this MPdir = /usr/local/mpi MPinc = -I$(MPdir)/include MPlib = -L$(MPdir)/lib -lmpi -lopen-rte -lopen-pal george. On Feb 21, 2007, at 11:35 AM, Eric Thibodeau wrote: Hello all, As we all know, compiling OpenMPI is not a matter of adding -lmpi (http://www.ope

Re: [OMPI users] Compiling HPCC with OpenMPI

2007-02-21 Thread Eric Thibodeau
Hi George, Would you say this is preferred to changing the default CC + LINKER? Eric Le mercredi 21 février 2007 12:04, George Bosilca a écrit : > You should use something like this > MPdir = /usr/local/mpi > MPinc = -I$(MPdir)/include > MPlib = -L$(MPdir)/lib -lmpi -lopen-rte -lopen-pal >