Changeset 1693
- Timestamp:
- Dec 12, 2012, 11:51:40 AM (12 years ago)
- Location:
- BOL/script_install
- Files:
-
- 4 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
BOL/script_install/install.sh
r1621 r1693 46 46 47 47 version=20110921.trunk 48 version=testing 49 48 50 #Chemin pour placer le modele 49 51 MODEL=./LMDZ$version … … 56 58 check_linux=1 57 59 ioipsl=1 58 veget= 060 veget=1 59 61 bench=1 60 ## compilo=pgf90 ou g95 ou gfortran ou ifort sur PC linux61 compilo=gfortran62 62 pclinux=1 63 compilo=gfortran # compilo=pgf90 ou g95 ou gfortran ou ifort sur PC linux 64 65 66 ##################################################################### 67 # Test for old gfortran compilers 68 if [ $compilo = gfortran ] ; then 69 gfortranv=`gfortran --version | \ 70 head -1 | awk ' { print $NF } ' | awk -F. ' { print $1 * 10 + $2 } '` 71 if [ $gfortranv -le 43 ] ; then 72 echo ERROR : Your gfotran compiler is too old 73 echo 'Please choose a new one (g95, ifort) and change the line' 74 echo compilo=xxx 75 echo in the install.sh script and rerun it 76 exit 77 fi 78 fi 79 ##################################################################### 80 81 63 82 64 83 ## compile_with_fcm=1 : utilise makelmdz_fcm, possible a partir de la version 20111103.trunk (LMDZ5/trunk rev 1578) 65 84 ## compile_with_fcm=0 : utilise makegcm (default) 66 compile_with_fcm= 085 compile_with_fcm=1 67 86 68 87 OPTPREC=""
Note: See TracChangeset
for help on using the changeset viewer.