Changeset 847 for trunk/LMDZ.COMMON/makelmdz_fcm
- Timestamp:
- Nov 18, 2012, 7:15:08 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.COMMON/makelmdz_fcm
r270 r847 1 1 #!/bin/bash 2 # $Id: makelmdz_fcm 1 327 2010-03-16 10:23:17Z ymeurdesoif$2 # $Id: makelmdz_fcm 1615 2012-02-10 15:42:26Z emillour $ 3 3 # This is a script in Bash. 4 4 … … 27 27 io=ioipsl 28 28 LIBPREFIX="" 29 fcm_path=none30 29 cosp=false 31 30 … … 34 33 LIBFGCM=$LMDGCM/libf 35 34 COSP_PATH=$LMDGCM/.void_dir 35 fcm_path=$LMDGCM/tools/fcm/bin 36 36 37 37 ######################################################################## … … 74 74 [-filtre NOMFILTRE] : prend le filtre dans libf/NOMFILTRE (def: filtrez) 75 75 [-link LINKS] : liens optionels avec d'autres librairies 76 [-fcm_path path] : chemin pour fcm (def: le chemin est suppose deja exister dans le PATH)76 [-fcm_path path] : chemin pour fcm (def: tools/fcm/bin) 77 77 [-ext_src path] : chemin d'un repertoire source avec des sources externe a compiler avec le modele 78 78 -arch nom_arch : nom de l'architecture cible … … 156 156 # mettre le chemin du fcm dans le path 157 157 ############################################################### 158 if [[ "$fcm_path" != "none" ]] 159 then 160 export PATH=${fcm_path}:${PATH} 161 fi 158 export PATH=${fcm_path}:${PATH} 162 159 163 160 echo "Chemin du fcm utlise :" … … 193 190 if [[ "$physique" != "nophys" ]] 194 191 then 195 # then we wil use some physics:192 #We'll use some physics 196 193 CPP_KEY="$CPP_KEY CPP_PHYS" 197 #Default planet type is Earth 194 if [[ "${physique:0:3}" == "lmd" ]] 195 then 196 #For lmd physics, default planet type is Earth 198 197 CPP_KEY="$CPP_KEY CPP_EARTH" 198 fi 199 199 fi 200 200 … … 284 284 cd $LMDGCM 285 285 286 if [[ "$physique" == "generic" ]] 287 then 288 cd $LIBFGCM/phygeneric 289 ./generatedoth.sh 290 cd $LMDGCM 291 fi 286 292 287 293 ########################################################################
Note: See TracChangeset
for help on using the changeset viewer.