source: trunk/LMDZ.MARS/util/compile @ 137

Last change on this file since 137 was 137, checked in by aslmd, 14 years ago

ATTENTION COMMIT MAJEUR NON-CONSERVATIF

  • CHANGEMENT ARBORESCENCE POUR SEPARATION CLAIRE DES COMPOSANTES et MODELES
  • UTILISATION DE LIENS SYMBOLIQUES POUR GARDER UNE BASE COMMUNE LMDZ.COMMON
  • VOIR LE FICHIER DOC/000-MODELS POUR EN SAVOIR PLUS !

EN CAS DE PROBLEME AVEC svn update IL EST CONSEILLE DE REVENIR A UN svn co

DERNIERE REVISION AVEC L'ANCIENNE ARBORESCENCE : 132

  • Property svn:executable set to *
File size: 1019 bytes
Line 
1# The following script can be used to compile one of the utilities
2# program. Example of use :
3# > compile concat
4# > compile zrecast
5 pgf90 -Bstatic   $1.F90 \
6-I/distrib/local/netcdf/pgi_7.1-6_32/include \
7-L/distrib/local/netcdf/pgi_7.1-6_32/lib -lnetcdf  -o $1.e
8
9
10# Before running that on you computer you might want to change :
11# 1) replace "pgf90" with the name of your favorite compiler
12#    (on some machine, you should add option -fast : f77 -fast
13# 2) replace "/distrib/local/netcdf/pgi_7.1-6_32/include" with the
14# address of the
15# directory that contains the NetCDF library (file libnetcdf.a that can
16# be obtained for free on
17# http://www.unidata.ucar.edu/packages/netcdf/index.html
18# (see user manual)
19#
20# 3) Replace "/distrib/local/netcdf/pgi_7.1-6_32/lib" with the address of the
21# directory that contains the NetCDF  include file "netcdf.inc"
22# that can be obtained at the web address above.
23#
24#  4) The "-Bstatic" option is here to ensure that the executable will
25#  work on any Linux machine.
26
27
28
29
Note: See TracBrowser for help on using the repository browser.