source: trunk/LMDZ.COMMON/ioipsl/install_ioipsl_ciclad.bash @ 2226

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

Update CICLAD arch files to use more recent NetCDF libraries, and make a clean install script for IOIPSL on CICLAD which uses the same recent NetCDF libraries (mandatory due to latest updates in IOIPSL).
EM

  • Property svn:executable set to *
File size: 2.1 KB
Line 
1#!/bin/bash
2# script to download and install the latest version of IOIPSL on Ciclad
3#
4
5#0. Preliminary stuff
6# source the environment from the GCM arch files
7source ../arch/arch-CICLADifort.env
8source ../arch/arch-CICLADifort.path
9
10whereami=`pwd -P`
11
12# 1. Get IOIPSL (via modipsl)
13svn co http://forge.ipsl.jussieu.fr/igcmg/svn/modipsl/trunk modipsl
14cd modipsl/util
15
16./model IOIPSL_PLUS
17
18# 2. Set correct settings:
19# add a "ciclad" configuration to AA_make.gdef
20echo "#-Q- cicladi  #- Global definitions for ciclad at UPMC, ifort" >> AA_make.gdef
21echo "#-Q- cicladi  M_K = make" >> AA_make.gdef
22echo "#-Q- cicladi  P_C = cpp" >> AA_make.gdef
23echo '#-Q- cicladi  P_O = -P -C $(P_P)' >> AA_make.gdef
24echo "#-Q- cicladi  F_C = ifort -mcmodel=large -shared-intel -c" >> AA_make.gdef
25echo "#-Q- cicladi  #-D- MD    F_D = -g" >> AA_make.gdef
26echo "#-Q- cicladi  #-D- MN    F_D =" >> AA_make.gdef
27echo "#-Q- cicladi  #-P- I4R4  F_P = -integer-size 32" >> AA_make.gdef
28echo "#-Q- cicladi  #-P- I4R8  F_P = -integer-size 32 -real-size 64" >> AA_make.gdef
29echo "#-Q- cicladi  #-P- I8R8  F_P = -integer-size 64 -real-size 64" >> AA_make.gdef
30echo '#-Q- cicladi  F_O = -O $(F_D) $(F_P) -I$(MODDIR) -module $(MODDIR)' >> AA_make.gdef
31echo "#-Q- cicladi  F_L = ifort" >> AA_make.gdef
32echo "#-Q- cicladi  M_M = 0" >> AA_make.gdef
33echo "#-Q- cicladi  L_X = 0" >> AA_make.gdef
34echo "#-Q- cicladi  L_O =" >> AA_make.gdef
35echo "#-Q- cicladi  A_C = ar -r" >> AA_make.gdef
36echo "#-Q- cicladi  A_G = ar -x" >> AA_make.gdef
37echo "#-Q- cicladi  C_C = icc -c" >> AA_make.gdef
38echo "#-Q- cicladi  C_O =" >> AA_make.gdef
39echo "#-Q- cicladi  C_L = icc" >> AA_make.gdef
40echo "#-Q- cicladi  #-" >> AA_make.gdef
41echo "#-Q- cicladi  NCDF_INC = ${NETCDF_INCDIR:2}" >> AA_make.gdef
42echo "#-Q- cicladi  NCDF_LIB = ${NETCDF_LIBDIR} ${NETCDF_LIB}" >> AA_make.gdef
43echo "#-Q- cicladi  #-" >> AA_make.gdef
44
45# set default working precision for IOIPSL:
46./ins_make -t cicladi -p I4R8
47
48## 3. build ioipsl:
49cd ../modeles/IOIPSL/src
50make
51## Compile the rebuild tool:
52cd ../tools
53make
54
55if [[ -f ${whereami}/modipsl/lib/libioipsl.a ]] 
56  then
57  echo "OK: ioipsl library is in ${whereami}/modipsl/lib"
58else
59  echo "Something went wrong..."
60fi
Note: See TracBrowser for help on using the repository browser.