source: trunk/LMDZ.COMMON/ioipsl/install_ioipsl_ifort_MESOIPSL.bash @ 3480

Last change on this file since 3480 was 3425, checked in by emillour, 3 months ago

IOIPSL install scripts:
Adapt to a change made end of August 2024; the IPSL forge hosting
the IOIPSL svn is now on forge.ipsl.fr
(also removed some old scripts for machines which don't exist anymore)
EM

  • Property svn:executable set to *
File size: 1.6 KB
Line 
1#!/bin/bash
2# script to download and install the latest version of IOIPSL on Spirit
3#
4
5#0. Preliminary stuff
6
7if (( $# == 0 ))
8then
9  # default behavior: get latest version of IOIPSL
10  rev="HEAD"
11else
12  # but otherwise the first argument of the script can be the version to use
13  if (( $# == 1 ))
14  then
15    rev=$1
16  else
17    echo "Error, invalid script arguments"
18    echo "Usage:"
19    echo "$0 rev"
20    echo " where optional rev is the IOIPSL revision number"
21    exit
22  fi
23fi
24
25# cleanup possible previous attempt:
26\rm -rf ../../IOIPSL modipsl
27
28# 1. Get IOIPSL
29# move up at same level as LMDZ.COMMON , etc.
30cd ../..
31svn co --username icmc_users --password icmc2022 --non-interactive --revision $rev http://forge.ipsl.fr/igcmg/svn/IOIPSL/trunk IOIPSL
32
33# 2. Set correct settings: copy over arch.* files
34cd IOIPSL
35cp -f ../LMDZ.COMMON/arch/arch-ifort_MESOIPSL.env arch
36cp -f ../LMDZ.COMMON/arch/arch-ifort_MESOIPSL.path arch
37cp -f ../LMDZ.COMMON/arch/arch-ifort_MESOIPSL.fcm arch
38
39## 3. build ioipsl:
40./makeioipsl_fcm -arch ifort_MESOIPSL -job 8 > makeioipsl.out 2>&1
41
42## 4. Check if the library was indeed built:
43whereami=`pwd -P`
44if [[ -f lib/libioipsl.a ]] 
45  then
46  echo "OK: ioipsl library is in ${whereami}/lib"
47else
48  echo "Something went wrong... check messages in ${whereami}/makeioipsl.out"
49  exit
50fi
51
52## 5. Comply with old setup and make appropriate links
53cd ../LMDZ.COMMON/ioipsl
54mkdir modipsl
55cd modipsl
56# lib + module files
57mkdir lib
58cd lib
59ln -s ../../../../IOIPSL/lib/libioipsl.a .
60ln -s ../../../../IOIPSL/inc/* .
61cd ..
62# rebuild utility
63mkdir bin
64cd bin
65ln -s ../../../../IOIPSL/bin/* .
Note: See TracBrowser for help on using the repository browser.