Changeset 1693


Ignore:
Timestamp:
Dec 12, 2012, 11:51:40 AM (12 years ago)
Author:
Laurent Fairhead
Message:

Mise à jour de la procédure d'installation par install.sh
En particulier, bascule sur la testing par défaut


Updates to the isntall.sh procedure
In particular, switch to the testing branch by default

Location:
BOL/script_install
Files:
4 added
1 edited

Legend:

Unmodified
Added
Removed
  • BOL/script_install/install.sh

    r1621 r1693  
    4646
    4747version=20110921.trunk
     48version=testing
     49
    4850#Chemin pour placer le modele
    4951MODEL=./LMDZ$version
     
    5658check_linux=1
    5759ioipsl=1
    58 veget=0
     60veget=1
    5961bench=1
    60 ## compilo=pgf90 ou g95 ou gfortran ou ifort sur PC linux
    61 compilo=gfortran
    6262pclinux=1
     63compilo=gfortran # compilo=pgf90 ou g95 ou gfortran ou ifort sur PC linux
     64
     65
     66#####################################################################
     67# Test for old gfortran compilers
     68if [ $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
     78fi
     79#####################################################################
     80
     81
    6382
    6483## compile_with_fcm=1 : utilise makelmdz_fcm, possible a partir de la version 20111103.trunk (LMDZ5/trunk rev 1578)
    6584## compile_with_fcm=0 : utilise makegcm (default)
    66 compile_with_fcm=0
     85compile_with_fcm=1
    6786
    6887OPTPREC=""
Note: See TracChangeset for help on using the changeset viewer.