source: trunk/MESOSCALE/NETCDF/pgf90_64_netcdf_fpic @ 191

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

MESOSCALE: python graphics. added the nowind case plus corrected a few minor things.

  • Property svn:executable set to *
File size: 545 bytes
Line 
1#! /bin/bash
2
3# netcdf  v3.6.1
4# pgi     v6.2-5
5# ehouarn v2.0
6
7tar xvf netcdf-3.6.1.tar
8
9cd netcdf-3.6.1
10
11export CC=pgcc
12export CXX=pgCC
13#export CPP='pgcc -E'
14#export FC=pgf90
15export F77=pgf90
16export F90=pgf90
17export CFLAGS="-fast -tp=x64 -Msignextend -fpic"
18export CXXFLAGS="-fast -tp=x64 -Msignextend-fpic"
19export CPPFLAGS="-DNDEBUG -DpgiFortran -fpic"
20export FFLAGS="-fast -tp=x64 -fpic"
21#export FCFLAGS="-fast -tp=x64"
22export F90FLAGS="-fast -tp=x64 -fpic"
23
24PREFIX=$PWD
25
26cd src
27
28./configure --prefix=${PREFIX}
29make
30make test
31make install
32
Note: See TracBrowser for help on using the repository browser.