source: trunk/MESOSCALE_DEV/NETCDF/pgf90_64_netcdf_fpic @ 357

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

MESOSCALE: python graphics. now possible for multi-files and multi-var. very easy to make an atlas.

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