Ignore:
Timestamp:
Nov 15, 2012, 10:33:08 AM (12 years ago)
Author:
emillour
Message:

Common dynamics:

  • bug fix in filtreg_p.F on array boundaries (important when not using BLAS)
  • updated arch-GNOME files to point to more recent ifort compiler
  • converted script "build_gcm" to bash

EM

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.COMMON/build_gcm

    r134 r843  
    1 #!/bin/csh
     1#!/bin/bash
    22
    3 if ( -f '.lock' ) then
     3if [[ -f '.lock' ]] ; then
    44  echo 'ATTENTION: vous etes sans doute en train de compiler le modele par ailleurs'
    55  echo "Attendez que la premiere compilation soit terminee pour relancer la suivante."
     
    77  echo  vous pouvez continuer en repondant oui.
    88  echo "Voulez-vous vraiment continuer?"
    9 
    10   if ( $< == "oui" ) then
    11    
    12   else
     9  read -p "" answer
     10  if [[ $answer != "oui" ]] ; then
    1311    exit
    14   endif
     12  fi
    1513else
    1614  echo "compilation en cours..." > '.lock'
    17 endif
    18 
    19 #set arch=$1
    20 
     15fi
    2116
    2217fcm build
Note: See TracChangeset for help on using the changeset viewer.