source: trunk/LMDZ.COMMON/ioipsl/install_ioipsl_gfortran-gcc.bash @ 2190

Last change on this file since 2190 was 2190, checked in by emillour, 5 years ago

Common dynamics:
Modify IOIPSL automatic installation script to use bash instead of (obsolete) ksh.
EM

  • Property svn:executable set to *
File size: 1.7 KB
Line 
1#!/bin/bash
2# script to download and install the latest version of IOIPSL
3# using gfortran
4# You'll probably have to change paths to NetCDF library 'lib' and 'include'
5# below to adapt this script to your computer.
6
7#setfolder="/cm/shared/apps/netcdf/gcc/64/4.1.1"
8#setfolder="/donnees/emlmd/netcdf64-4.0.1_gfortran/"
9
10#0. Preliminary stuff
11# netcdf include and lib dirs:
12#netcdf_include=$setfolder"/include"
13#netcdf_lib=$setfolder"/lib"
14netcdf_include="$NETCDFINCLUDE"
15netcdf_lib="$NETCDFDIR"
16echo $netcdf_include
17echo $netcdf_lib
18
19whereami=`pwd -P`
20
21# 1. Get IOIPSL (via modipsl)
22svn co http://forge.ipsl.jussieu.fr/igcmg/svn/modipsl/trunk modipsl
23cd modipsl/util
24
25# make all refs to ksh become refs to bash
26for i in ins_m_prec model script_diff_model script_log_analyse script_recup_model
27do
28  sed -i -e s:'#!/bin/ksh':'#!/bin/bash':1 $i
29done
30./model IOIPSL_PLUS
31
32# 2. Set correct settings:
33# modify path to netcdf in 'AA_make.gdef'
34cp AA_make.gdef AA_make.gdef.old
35sed -e s:"gfortran  NCDF_INC = /usr/local/include":"gfortran  NCDF_INC = ${netcdf_include}":1 \
36    -e s:"gfortran  NCDF_LIB = -L/usr/local/lib -lnetcdf":"gfortran  NCDF_LIB = -L${netcdf_lib} -lnetcdf -lnetcdff":1 \
37    AA_make.gdef.old > AA_make.gdef
38
39# set default working precision for IOIPSL:
40./ins_make -t gfortran -p I4R8
41
42## 3. build ioipsl:
43cd ../modeles/IOIPSL/src
44# make all refs to ksh become refs to bash
45for i in AA_make.ldef Makefile
46do
47  sed -i -e s:'/bin/ksh':'/bin/bash':1 $i
48done
49make
50## Compile the rebuild tool:
51cd ../tools
52for i in AA_make.ldef Makefile rebuild
53do
54  sed -i -e s:'/bin/ksh':'/bin/bash':1 $i
55done
56make
57
58if [[ -f ${whereami}/modipsl/lib/libioipsl.a ]] 
59  then
60  echo "OK: ioipsl library is in ${whereami}/modipsl/lib"
61else
62  echo "Something went wrong..."
63fi
64
Note: See TracBrowser for help on using the repository browser.