source: trunk/MESOSCALE_DEV/MPI/install_pgfortran_openmpi @ 839

Last change on this file since 839 was 343, checked in by aslmd, 13 years ago

MESOSCALE: previous problems do not appear when using openMPI instead of MPICH2.

  • Property svn:executable set to *
File size: 490 bytes
Line 
1#! /bin/bash
2
3name=pgfortran_openmpi-1.4.4
4###########################
5
6wget http://www.open-mpi.org/software/ompi/v1.4/downloads/openmpi-1.4.4.tar.gz
7tar xzvf openmpi-1.4.4.tar.gz
8\rm openmpi-1.4.4.tar.gz
9
10export CC=pgcc
11export FC=pgfortran
12export F77=pgfortran
13export CXX=pgcpp
14export CFLAGS=-fast
15export FCFLAGS=-fast
16export FFLAGS=-fast
17export CXXFLAGS=-fast
18
19ici=$PWD/$name
20cd openmpi-1.4.4
21./configure --prefix=$ici
22make
23make check
24make install
25cd ..
26\rm -rf openmpi-1.4.4
27
28
Note: See TracBrowser for help on using the repository browser.